我在元素悬停时遇到 jquery mouseenter / mouseleave 问题,其中的东西不断闪烁。所以它有点工作,但它闪烁。
这是我的代码(准备就绪):
myLinkElement.bind({
mouseenter: function (e) {
$(this).parent().removeClass("empty");
$(this).parent().addClass("waiting");
$(this).parent().find("#waitingText").html("hello");
myContainerOverlay.stop(true, true).fadeIn();
},
mouseleave: function (e) {
$(this).parent().addClass("empty");
$(this).parent().removeClass("waiting");
$(this).parent().find("#waitingText").html("");
myContainerOverlay.stop(true, true).fadeOut();
}
});
有什么建议么?