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

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

$(".a").hover(function(){
			$(this).find(".top").stop().toggle(); 
			$(this).find(".hidden").stop().slideToggle(); 
});
时间: 2024-12-28 06:46:27