我在mousemove
上附加了一个DIV事件:
$('#graph-container').bind('mousemove', function(){
// something happens here
}
我如何解开它?
谢谢!
答案 0 :(得分:3)
您使用unbind
,例如:
$('#graph-container').unbind('mousemove');
该示例将从元素中删除所有 jQuery附加的mousemove
处理程序。您可以使用与bidn
相同的函数引用,或使用jQuery的事件"名称空间,"来删除特定的函数。 more in the docs