如何在其他事件后禁用Jquery函数?

时间:2009-04-08 20:51:49

标签: javascript jquery javascript-events

我想在另一个事件发生时禁用特定列表上的悬停事件。

3 个答案:

答案 0 :(得分:16)

您可以使用unbind功能删除这些事件。

$('#theListId').unbind('mouseenter').unbind('mouseleave');

答案 1 :(得分:4)

你也可以使用:

$('#item').unbind('mouseenter mouseleave');

与...相同:

$('#theListId').unbind('mouseenter').unbind('mouseleave');

答案 2 :(得分:1)

function test(){ alert('test'); };

$( "li" ).hover( test );

$("li").unbind('hover', test);