jQuery 函式庫可以透過一行簡單的標記被加入到網頁中。
jQuery 函式庫 - 特性
jQuery 是一個 JavaScript 函式庫。
jQuery 函式庫包含以下特性:
新增 jQuery 庫
jQuery 函式庫位於一個 JavaScript 檔案中,其中包含了所有的 jQuery 函數。
可以透過下面的標記把 jQuery 加入網頁:
<head> <script type="text/javascript" src="jquery.js"></script> </head>
請注意,<script> 標籤應該位於頁面的 <head> 部分。 <br /> <strong>基礎 jQuery 實例</script>
下面的範例示範了 jQuery 的 hide() 函數,隱藏了 HTML 文件中所有的
元素。
實例
<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>
親自試試
下載 jQuery
共有兩個版本的 jQuery 可供下載:一份是精簡過的,另一份是未壓縮的(供調試或閱讀)。
這兩個版本都可從 jQuery.com 下載。
庫的替代
Google 和 Microsoft 對 jQuery 的支援都很好。
如果您不願意在自己的電腦上存放 jQuery 庫,那麼可以從 Google 或 Microsoft 載入 CDN jQuery 核心檔案。
使用 Google 的 CDN
<head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs /jquery/1.4.0/jquery.min.js"></script> </head>
使用 Microsoft 的 CDN
<head> <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery /jquery-1.4.min.js"></script> </head>