jqurey事件

2018-11-11  本文已影响0人  Taoqi思

jQuery 事件函数

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

事件处理程序指的是当 HTML 中发生某些事件时所调用的方法。术语由事件“触发”(或“激发”)经常会被使用。

通常会把 jQuery 代码放到 <head>部分的事件处理方法中:

eg:

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

该方法隐藏所有 <p> 元素: $("p").hide();

jQuery 事件
下面是 jQuery 中事件方法的一些例子:
(document).ready(function) 将函数绑定到文档的就绪事件(当文档完成加载时)(selector).click(function) 触发或将函数绑定到被选元素的点击事件
(selector).dblclick(function) 触发或将函数绑定到被选元素的双击事件(selector).focus(function) 触发或将函数绑定到被选元素的获得焦点事件
$(selector).mouseover(function) 触发或将函数绑定到被选元素的鼠标悬停事件

上一篇 下一篇

猜你喜欢

热点阅读