2018-12-12jquery 事件,事件绑定

2018-12-12  本文已影响0人  回忆在美也是曾经

绑定事件的其他方式

tex parse error(image-be1635-1544596678667)]

('#div1').bind('mouseover click', function(event) {
alert($(this).html());
});
});

取消绑定事件

  tex parse error (image-8f63fa-1544596678667)]


('#div1').bind('mouseover click', function(event) {
alert($(this).html());


// $(this).unbind();
$(this).unbind('mouseover');

});

```

});
上一篇下一篇

猜你喜欢

热点阅读