首页 > 代码库 > $.hover()事件 快速触发导致动作延迟问题的解决

$.hover()事件 快速触发导致动作延迟问题的解决

$.hover()事件 快速触发导致动作延迟问题的解决,在触发hover 事件中我们给相应的 事件前加上stop()即可。

$(".a").hover(function(){
			$(this).find(".top").stop().toggle(); 
			$(this).find(".hidden").stop().slideToggle(); 
});


$.hover()事件 快速触发导致动作延迟问题的解决