js(jquery)绑定点击事件

时间:2025-03-28 12:18:52

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

第一种

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

第二种

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

第三种

html

     <button type="submit" οnclick="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*/ } );

第一种和第二种的效果是一样,可以附加多个事件处理函数,并不是只有使用jquery才能做到。 第三种方法不推荐使用,原则上HTML代码只能体现网页的结构,具体的行为应该使用javascript代码进行绑定。

除非页面上绑定事件的元素超过上万个,否则响应速度的时候就不必纠结了,只做个事件绑定还是很快的。我测试了一下,使用addEventListener绑定3000次,耗时3-4毫秒。

如果项目中统一使用jQuery的话,建议使用第一种做法,顺便还解决了IE的不兼容问题。