jQuery-Events事件-click单击
jQuery - Events事件 - click单击
jQuery⽀持绑定HTML元素的click事件, 函数的第⼀个参数是event对象,在IE中,使⽤event.srcElement获取触发事件的对象,⽽在Firefox中,使⽤ event.target获取触发事件的对象,jQuery并没有对该事件进⾏封装。为了避免判断浏览器类型,可以使⽤this变量。
click( ) - Overview概述
Triggers the click event of each matched element.
触发每个匹配元素的单击事件。
Causes all of the functions that have been bound to that click event to be executed.
click( ) - Examples - Code
To trigger the click event on all of the paragraphs on the page:
$("p").click();
click( fn ) - Overview
Binds a function to the click event of each matched element.
绑定函数到每个匹配元素的单击事件。
The click event fires when the pointing device button is clicked over an element. A click is defined as a mousedown and mouseup over the same screen location. The sequence of these events is:
mousedown
mouseup
click
click( fn ) - Demo
To hide paragraphs on a page when they are clicked:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"">
<html>
<head>
<script src=""></script>
<script>
$(document).ready(function(){
$("p").click(function () {      $(this).();    });    $("p").(function () {      $(this).("hilite");    }, function () {      $(this).("hilite");    });  });  </script>  <style>  p { color:red; margin:5px; cursor:pointer; }  p.hilite { background:yellow; }  </style></head><body>  <p>First Paragraph</p>  <p>Second Paragraph</p>  <p>Yet one more Paragraph</p></body></html>
click( fn ) - Arguments: - fn
fn Function
[Events/click - ⽂档]
[IE的onclick事件⽂档]
[Firefox的event对象⽂档]
jquery的attr属性[jQuery - 官⽅⽹站]
[jQuery - 当前版本]
[jQuery - 其他下载地址]
[jQuery - 相关论坛]
, homepage看版
[jQuery - 关键词]
jQuery
[jQuery - Core核⼼]
[jQuery - Ajax]
dataType选项,设置返回值类型
timeout选项,⽤于设置超时
[jQuery - 特效]
[jQuery - Selectors选择器]
选择器在选择body中出现的title标记时,会出现和预期不同的效果。 [jQuery - Attributes属性]
[jQuery - 常⽤函数]
attr访问⾃定义属性,减少javascript脚本中代码和数据的耦合 filter, ⽤于在集合中过滤元素
[jQuery - Events事件]
[jQuery - Traversing遍历器]
[jQuery - Tutorials教程] [jQuery - plugins插件]
[jQuery - Utilities实⽤⼯具] [jQuery - 参考资料]
,
[jQuery - 综合实例]
实现前⼀个和后⼀个效果
跨窗⼝调⽤函数
定时刷新
下拉列表框打开指定⽹站
⽣成在两个边界间的随机数

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。