标签:io ar 问题 cti sp on c js as
$.hover()事件 快速触发导致动作延迟问题的解决,在触发hover 事件中我们给相应的 事件前加上stop()即可。
如
$(".a").hover(function(){ $(this).find(".top").stop().toggle(); $(this).find(".hidden").stop().slideToggle(); });
$.hover()事件 快速触发导致动作延迟问题的解决
原文地址:http://my.oschina.net/u/1040928/blog/307025