Upgrade to Pro — share decks privately, control downloads, hide ads and more …

jQuery 快速入门

jQuery 快速入门

By xingzhi, 2n TechParty@UIC

uictechparty

July 08, 2012
Tweet

More Decks by uictechparty

Other Decks in Programming

Transcript

  1. " By crawling Alexa top 100 000 websites I found

    out that 45% of them use a Javascript framework and among those who use a framework 28% of them use Jquery. " http://goo.gl/rXUGG
  2. 常见CSS选择器: 标签选择器 div {......} ID 选择器 #myID {......} 类选择器 .myClass

    {......} 后代选择器 #myID div{......} 组群选择器 div, #myID, .myClass {......} jQuery 基本选择器与CSS选择器几乎一样! 在css选择器的基础上添加更多功能。