关于bind()方法绑定两个以上的方法的疑问?
$("#test").bind("change click",function(){});
之前我们学过 如果bind()方法要绑定两个以上的事件 我们可以使用的方式是 .bind(" 事件1 事件2 事件3 ",function(){do some thing}),我想知道 这三个事件 都对应一个function()吗,如果要分别对应不同的 function 应该如何写?
$("#test").bind("change click",function(){});
之前我们学过 如果bind()方法要绑定两个以上的事件 我们可以使用的方式是 .bind(" 事件1 事件2 事件3 ",function(){do some thing}),我想知道 这三个事件 都对应一个function()吗,如果要分别对应不同的 function 应该如何写?
2015-03-28
谢谢! 刚才试了 一下确实好用。但是这样写起来 会不会不容易阅读那 拆分开了那?
1. $("#btntest").bind("click", function(){$(this).attr("disabled", "true");}).bind("mouseout", function(){$(this).css("color", "red")})
2. $("#btntest").bind("click", function(){$(this).attr("disabled", "true");}) $("#btntest").bind("mouseout", function(){$(this).css("color", "red");})
举报