码迷,mamicode.com
首页 > Web开发 > 详细

jQuery 事件

时间:2015-05-18 10:41:36      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

jQuery是为事件处理特别设计的

jQuery处理方法是jQuery中的核心函数

jQuery函数一般放在<head>部分的事件处理方法中

举例:当按钮被点击时会触发一个jQuery函数,隐藏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>Click me</button>
</body>

</html>

 

jQuery 事件

标签:

原文地址:http://www.cnblogs.com/275147378abc/p/4511167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!