$.hover()事件 快速触发致使动做延迟问题的解决,在触发hover 事件中咱们给相应的 事件前加上stop()便可。ide
如this
$(".a").hover(function(){ $(this).find(".top").stop().toggle(); $(this).find(".hidden").stop().slideToggle(); });