在此示例中,如果我快速将鼠标移入、移出、移入、移出,mouseleave 事件仍将触发两次
如果光标移回,如何使淡出事件停止触发?
$(document).on("mouseenter","div",function() { $(this).find("span").fadeIn(400);}).on("mouseleave","div",function() {$(this).find("span").delay(700).fadeOut(400);});
(需要备注.on
)
在此示例中,如果我快速将鼠标移入、移出、移入、移出,mouseleave 事件仍将触发两次
如果光标移回,如何使淡出事件停止触发?
$(document).on("mouseenter","div",function() { $(this).find("span").fadeIn(400);}).on("mouseleave","div",function() {$(this).find("span").delay(700).fadeOut(400);});
(需要备注.on
)