Jquery的bind方法

$(document).ready(function(){
    var da={name:"ahduaygcfu"};
    $("button").bind("click",da,function(event){
    alert(event.data.name);
});
});

用bind方法绑定时间是可以向触发的时间传递参数(JSON格式),在事件处理函数中,可通过event.data来访问传入的参数。

与on方法不指定selector参数时用法相同!

特定时间传入参数的方法如下:

$("button").click(da,function(event){
	alert(event.data.name);
});

  

posted @ 2017-04-19 20:14  别让梦想仅仅是梦想  阅读(213)  评论(0编辑  收藏  举报