jQuery 庫可以通過一行簡單的标記被添加到(dào)網頁中。
jQuery 庫 - 特性
jQuery 是一個 JavaScript 函數庫。
jQuery 庫包含以下(xià)特性:
HTML 元素選取
HTML 元素操作(zuò)
CSS 操作(zuò)
HTML 事(shì)件函數
JavaScript 特效和(hé)動畫(huà)
HTML DOM 遍曆和(hé)修改
AJAX
Utilities
向您的頁面添加 jQuery 庫
jQuery 庫位于一個 JavaScript 文(wén)件中,其中包含了(le)所有的 jQuery 函數。
可以通過下(xià)面的标記把 jQuery 添加到(dào)網頁中:
<head>
<script type="text/javascript" src="jquery.js"></script>
</head>
請(qǐng)注意,<script> 标簽應該位于頁面的 <head> 部分。
基礎 jQuery 實例
下(xià)面的例子演示了(le) jQuery 的 hide() 函數,隐藏了(le) HTML 文(wén)檔中所有的 <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>
下(xià)載 jQuery
共有兩個版本的 jQuery 可供下(xià)載:一份是精簡過的,另一份是未壓縮的(供調試或閱讀)。
這(zhè)兩個版本都可從(cóng) jQuery.com 下(xià)載。
庫的替代
Google 和(hé) Microsoft 對(duì) jQuery 的支持都很(hěn)好(hǎo)。
如果您不願意在自(zì)己的計(jì)算(suàn)機上(shàng)存放(fàng) jQuery 庫,那麽可以從(cóng) Google 或 Microsoft 加載 CDN jQuery 核心文(wén)件。
使用(yòng) Google 的 CDN
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs
/jquery/1.4.0/jquery.min.js"></script>
</head>
使用(yòng) Microsoft 的 CDN
<head>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery
/jquery-1.4.min.js"></script>
</head>
網站(zhàn)建設開(kāi)發|APP設計(jì)開(kāi)發|小(xiǎo)程序建設開(kāi)發