首页 > 编程 > JavaScript > 正文

jQuery中 bind的用法简单介绍

2019-11-19 17:36:36
字体:
来源:转载
供稿:网友

bind介绍

bind() 方法为被选元素添加一个或多个事件处理程序,并规定事件发生时运行的函数。

语法

$(selector).bind(event,data,function)

event 必须。添加到元素的一个或多个事件如:click,mouseover,mouseup,change,select

data 可不填。传递到函数的额外数据,如:$(selector).bind(“click”,”input”,function(){});

function(){} 必填。绑定事件触发的函数

bind绑定多个函数

$("button").bind({ // 注意它的格式是 json  click:function(){$("div").css("border","5px solid orange");},  mouseover:function(){$("div").css("background-color","red");},   mouseout:function(){$("div").css("background-color","#FFFFFF");}  });

4.bind绑定数据

// bind() 绑定 click 事件传 参数2 并且打印出 参数2 $('button').bind('click',['路飞','索隆','乌索普'],function(event){  alert(event.data[0]); // 路飞 });

5.unbind bind事件移除

    html 代码 

<button>unbind()</button> <p>点我删除上边按钮的事件</p>

    js 代码 

 // bind() 绑定多个点击事件 $('button').click(function(){  alert('我是第一个点击事件'); }); $('button').click(function(){  alert('我是第二个点击事件'); }); $('button').bind('click',function(){  alert('我是第三个点击事件'); }); // unbind() 删除点击事件 $('p').bind('click',function(){  $('button').unbind('click');  alert('button 的点击事件被删除'); });

以上所述是小编给大家介绍的jQuery中的 bind用法简单介绍,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对武林网网站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表