首頁 >web前端 >js教程 >初步認識JavaScript函數庫jQuery_jquery

初步認識JavaScript函數庫jQuery_jquery

WBOY
WBOY原創
2016-05-16 15:54:231011瀏覽

jQuery 函式庫可以透過一行簡單的標記被加入到網頁中。
jQuery 函式庫 - 特性

jQuery 是一個 JavaScript 函式庫。

jQuery 函式庫包含以下特性:

  •     HTML 元素選取
  •     HTML 元素操作
  •     CSS 操作
  •     HTML 事件函數
  •     JavaScript 特效與動畫
  •     HTML DOM 遍歷與修改
  •     AJAX
  •     Utilities

新增 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>


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn