jQuery 简介
jQuery 简介
jQuery 库可以通过一行简单的标记被添加到网页中。
1. jQuery 库 - 特性
jQuery 是一个 JavaScript 函数库。
jQuery 库包含以下特性:
- HTML 元素选取
- HTML 元素操作
- CSS 操作
- HTML 事件函数
- JavaScript 特效和动画
- HTML DOM 遍历和修改
- AJAX
- Utilities
2. 页面添加 jQuery 库
jQuery 库位于一个 JavaScript 文件中,其中包含了所有的 jQuery 函数。
可以通过下面的标记把 jQuery 添加到网页中:
<head> <script type="text/javascript" src="jquery.js"></script> </head>
请注意,<script> 标签应该位于页面的 <head> 部分。
3. jQuery 范例
下面的例子演示了 jQuery 的 hide() 函数,隐藏了 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
共有两个版本的 jQuery 可供下载:一份是精简过的,另一份是未压缩的(供调试或阅读)。
这两个版本都可从 jQuery.com 下载。
5. 库的替代
百度 对 jQuery 的支持都很好。
如果您不愿意在自己的计算机上存放 jQuery 库,那么可以从 Baidu 加载 CDN jQuery 核心文件。
使用 Baidu 的 CDN
<head> <script type="text/javascript" src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script> </head>
相关文章
- jQuery 教程
- jQuery 效果 滑动
- jQuery Callback 函数
- jQuery 获取并设置 CSS 类
- jQuery 遍历 过滤
- jQuery 参考手册 选择器
- jQuery 参考手册 属性操作
- jQuery 参考手册 属性
- 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 选择器