jQuery 事件

jQuery 事件函数

jQuery 事件处理函数是 jQuery 中的核心函数。

事件处理函数是当 HTML 中发生事件时自动被调用的函数。由“事件”(event)“触发”(triggered)是经常被用到的术语。

由于 jQuery 是为事件处理特别设计的,通常是把 jQuery 代码置于网页 <head> 部分的“事件处理”函数中

实例

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

 点击button按钮能把p标签的内容给隐藏

在上面的例子中,定义了一个处理 HTML 按钮的点击事件的 click 函数

代码

$("button").click(function() {..some code... } )

 click 函数内部的代码隐藏所有 <p> 元素:

代码

$("p").hide();

 所有事件函数都在文档自身的“事件处理器”内部进行定义:

代码

$(document).ready(function() {..some code...} )

相关推荐