我尝试$.unbind('hover')
,但无效。
答案 0 :(得分:75)
hover函数只是short-hand将两个处理程序绑定到mouseenter和mouseleave事件,您应该取消绑定它们:
$('#item').unbind('mouseenter mouseleave');
答案 1 :(得分:11)
答案 2 :(得分:2)
点击取消绑定点击
$('.item').click(function() {
$('.item').unbind('mouseenter mouseleave');
});
答案 3 :(得分:-2)
您也可以尝试:
$('#item').bind('hover', function(){return false})