给你一个示例:
菜鸟教程(runoob.com) 这是一个标题
这是一个段落。
这是另一个段落。
在每一个匹配元素的click事件中绑定一个处理函数。点击事件会在你的指针设备的按钮在元素上单击时触发。单击的定义是在屏幕的同一点触发了mousedown和mouseup.常用的事件有如下的 mousedownmouseupclickBinds 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: mousedownmouseupclick返回值jQuery参数fn (Function) : 绑定到click事件的函数示例将页面内所有段落点击后隐藏。 jQuery 代码:$("p").click( function () { $(this).hide(); });
推荐这么写
$('xxx').on('click',function(){
//逻辑处理
})
$("#welcome").bind("click",function(){alert('您点击我了!');});