js(jquery)绑定点击事件

Posted IT文艺女

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js(jquery)绑定点击事件相关的知识,希望对你有一定的参考价值。

<button type="submit" id="test">test</button>

第一种

$("#test").click(function(event){
/* Act on the event */});

第二种

document.getElementById(‘#foo‘).addEventListener(‘click‘, function() {
/* Act on the event */}, false);

第三种

html

     <button type="submit" id="test" onclick="test()">test</button>

js

     function test(){/* Act on the event */}

第四种

$(‘#test‘).bind(‘click‘, function() {/* Act on the event */ });

第五种

$( "#test" ).on( "click", function() {/* Act on the event*/ } ); 



以上是关于js(jquery)绑定点击事件的主要内容,如果未能解决你的问题,请参考以下文章

js(jquery)绑定点击事件

js(jquery)绑定点击事件

js(jquery)绑定点击事件

jQuery实现获取绑定自定义事件元素的方法

jQuery动态创建的元素为啥不能绑定事件

jquery on()绑定的点击事件在js动态新添加的元素上无效,请问为啥