$30 off During Our Annual Pro Sale. View Details »
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
jQuery 快速入门
Search
uictechparty
July 08, 2012
Programming
1
150
jQuery 快速入门
By xingzhi, 2n TechParty@UIC
uictechparty
July 08, 2012
Tweet
Share
More Decks by uictechparty
See All by uictechparty
产品经理是做什么的呢?
uictechparty
1
220
找人
uictechparty
3
470
香港研究生申请经验分享
uictechparty
0
410
css.pdf
uictechparty
1
220
Introduction to Design Patterns
uictechparty
2
150
编写高质量Java代码的7个建议
uictechparty
2
180
视觉障碍出行辅助仪 -The Third Eye
uictechparty
1
120
Introduction to NodeJS
uictechparty
1
210
Introduction to Hadoop
uictechparty
3
230
Other Decks in Programming
See All in Programming
開発に寄りそう自動テストの実現
goyoki
2
940
令和最新版Android Studioで化石デバイス向けアプリを作る
arkw
0
400
WebRTC と Rust と8K 60fps
tnoho
2
2k
Why Kotlin? 電子カルテを Kotlin で開発する理由 / Why Kotlin? at Henry
agatan
2
7.1k
20251127_ぼっちのための懇親会対策会議
kokamoto01_metaps
2
430
S3 VectorsとStrands Agentsを利用したAgentic RAGシステムの構築
tosuri13
6
310
Microservices rules: What good looks like
cer
PRO
0
1.3k
手が足りない!兼業データエンジニアに必要だったアーキテクチャと立ち回り
zinkosuke
0
670
モデル駆動設計をやってみようワークショップ開催報告(Modeling Forum2025) / model driven design workshop report
haru860
0
270
Rediscover the Console - SymfonyCon Amsterdam 2025
chalasr
2
160
「コードは上から下へ読むのが一番」と思った時に、思い出してほしい話
panda728
PRO
38
26k
從冷知識到漏洞,你不懂的 Web,駭客懂 - Huli @ WebConf Taiwan 2025
aszx87410
2
2.5k
Featured
See All Featured
Art, The Web, and Tiny UX
lynnandtonic
303
21k
What’s in a name? Adding method to the madness
productmarketing
PRO
24
3.8k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.8k
Building Adaptive Systems
keathley
44
2.9k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.8k
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
Embracing the Ebb and Flow
colly
88
4.9k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.4k
Git: the NoSQL Database
bkeepers
PRO
432
66k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
16k
Thoughts on Productivity
jonyablonski
73
5k
Designing for humans not robots
tammielis
254
26k
Transcript
jQuery 快速入门 TechParty@UIC 行之
内容 1. jQuery 的简介及其优势 2. jQuery 的选择器 3. jQuery 的DOM操作
4. jQuery 的事件
jQuery 的简介及其优势
“每多学一点知识,就少写一行代码” ——《锋利的jQuery》 (推荐) 轻量级javaScript类库,简化js操作, 用于快速处理文 档、事件、动画、ajax等。 由John Resig于2006年首次发布, 免费开源。 另有:jQuery
Mobile 、 jQuery UI、 jQuery 插件
" 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
兼容多浏览器 强大的选择器 简单的DOM操作 强大的事件处理机制 简化Ajax操作 链式操作(chaining) 面向集合,隐性迭代(implicit iteration) 支持扩展 (jQuery
插件)
调用 Google 提供的 jQuery <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> why? http://goo.gl/IFgGT http://goo.gl/nkVMG
jQuery API查询 http://goo.gl/7X2fo
jQuery 的选择器
常见CSS选择器: 标签选择器 div {......} ID 选择器 #myID {......} 类选择器 .myClass
{......} 后代选择器 #myID div{......} 组群选择器 div, #myID, .myClass {......} jQuery 基本选择器与CSS选择器几乎一样! 在css选择器的基础上添加更多功能。
$ 美刀符号,表示 jQuery jQuery("myID") = $("#myID") document.getElementById("myID") $() ——> 实例化操作函数。
jQuery 基本选择器, 同CSS选择器: $("#myID") 选择id为myID的元素 $(".myClass") 选择class 为 myClass 的元
素 $("span") 选择所有span标签元素 $("span,div") http://goo.gl/xmfKh
除此之外,还有: 层次选择器 过滤选择器 表单选择器 如: $("div:first") 选取文档中第一个div 更多了解请看API文档。
jQuery 的DOM操作
DOM: Document Object Model 文档对象模型 DOM 树 DOM 操作:查找节点、创建节点、删改节点、属性操 作
样式操作等。 http://goo.gl/9o7GF
jQuery 的事件
加载DOM: $(document).ready() 代替 onload 方法 http://goo.gl/rckPE
END THANK YOU
REF: 《锋利的jQuery》