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...} )
相关推荐
84483065 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
tztzyzyz 2020-07-05
delmarks 2020-06-28
89510194 2020-06-27
牵手白首 2020-06-14
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
momode 2020-09-11
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28