当前位置:编程学习 > JAVA >>

jQuery 自学笔记—2 简介

jQuery 是一个 JavaScript 库。
jQuery 极大地简化了 JavaScript 编程
 
jQuery 是一个“写的更少,但做的更多”的轻量级 JavaScript 库。
 
基本上,您将学习到如何选取 HTML 元素,以及如何对它们执行类似隐藏、移动以及操作其内容等任务
 
 
 
jQuery 库位于一个 JavaScript 文件中,其中包含了所有的 jQuery 函数。
 
可以通过下面的标记把 jQuery 添加到网页中:
 
<head>
<script type="text/javascript" src="jquery.js"></script>
</head>
请注意,<script> 标签应该位于页面的 <head> 部分。
 
 
 
 
 
基础 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>
 
 
 
补充:web前端 , JavaScript ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,