码迷,mamicode.com
首页 > Web开发 > 详细

js(jquery)绑定点击事件

时间:2017-12-13 00:08:33      阅读:368      评论:0      收藏:0      [点我收藏+]

标签:button   func   bind   pos   body   mit   log   list   bin   

<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)绑定点击事件

标签:button   func   bind   pos   body   mit   log   list   bin   

原文地址:http://www.cnblogs.com/itsmart/p/8030121.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!