您如何与此一起使用hoverIntent:
$mainNav.on('mouseenter', '.hEvent', function () {
//Do stuff
});
最佳答案
使用“选择器”选项进行事件委派。
$mainNav.hoverIntent({
over: function() {
},
out: function(){
},
selector: '.hEvent'
});
资料来源:hoverIntent Documentation