jQuery中 bind的用法简单介绍
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 的点击事件被删除'); });
相关推荐
lzzyok 2020-10-10
无情的你无情的雨 2020-06-16
chunianyo 2020-06-04
grantlee 2020-05-28
xjp 2020-05-26
Roka 2020-05-25
天空一样的蔚蓝 2020-05-02
nangongyanya 2020-04-19
shufen0 2020-04-14
humanbeng 2020-03-05
Alanxz 2020-03-04
liwf 2020-02-17
歆萌 2020-02-10
tianchaoshangguo 2020-01-04
julien 2020-01-02
齐天大圣数据候 2019-12-28
杨友山 2019-12-25
GavinZhera 2019-12-19
oLeiShen 2019-12-15