jQuery 簡(jiǎn)介
jQuery 簡(jiǎn)介
jQuery 庫(kù)可以通過一行簡(jiǎn)單的標(biāo)記被添加到網(wǎng)頁(yè)中。
1. jQuery 庫(kù) - 特性
jQuery 是一個(gè) JavaScript 函數(shù)庫(kù)。
jQuery 庫(kù)包含以下特性:
- HTML 元素選取
- HTML 元素操作
- CSS 操作
- HTML 事件函數(shù)
- JavaScript 特效和動(dòng)畫
- HTML DOM 遍歷和修改
- AJAX
- Utilities
2. 頁(yè)面添加 jQuery 庫(kù)
jQuery 庫(kù)位于一個(gè) JavaScript 文件中,其中包含了所有的 jQuery 函數(shù)。
可以通過下面的標(biāo)記把 jQuery 添加到網(wǎng)頁(yè)中:
<head> <script type="text/javascript" src="jquery.js"></script> </head>
請(qǐng)注意,<script> 標(biāo)簽應(yīng)該位于頁(yè)面的 <head> 部分。
3. jQuery 范例
下面的例子演示了 jQuery 的 hide() 函數(shù),隱藏了 HTML 文檔中所有的 <p> 元素。
范例
<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("p").hide(); }); }); </script> </head> <body> <h2>This is a heading</h2> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button type="button">Click me</button> </body> </html>
4. 下載 jQuery
共有兩個(gè)版本的 jQuery 可供下載:一份是精簡(jiǎn)過的,另一份是未壓縮的(供調(diào)試或閱讀)。
這兩個(gè)版本都可從 jQuery.com 下載。
5. 庫(kù)的替代
百度 對(duì) jQuery 的支持都很好。
如果您不愿意在自己的計(jì)算機(jī)上存放 jQuery 庫(kù),那么可以從 Baidu 加載 CDN jQuery 核心文件。
使用 Baidu 的 CDN
<head> <script type="text/javascript" src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script> </head>
相關(guān)文章
- jQuery 教程
- jQuery 效果 滑動(dòng)
- jQuery Callback 函數(shù)
- jQuery 獲取并設(shè)置 CSS 類
- jQuery 遍歷 過濾
- jQuery 參考手冊(cè) 選擇器
- jQuery 參考手冊(cè) 屬性操作
- jQuery 參考手冊(cè) 屬性
- jQuery 事件 delegate() 方法
- jQuery 事件 result 屬性
- jQuery 事件 target 屬性
- jQuery 事件 load() 方法
- jQuery 事件 submit() 方法
- jQuery jQuery.fx.off 屬性
- jQuery 遍歷 not() 方法
- jQuery ajax getJSON() 方法
- jQuery CSS 操作 width() 方法
- jQuery 屬性操作 attr() 方法
- jQuery 效果 toggle() 方法
- jQuery element 選擇器