Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个可折叠的网格,当用户单击链接时,它会淡入淡出。问题是,当用户非常快速地多次单击链接时,会打开多个网格并且不会淡出..这个问题只在 Firefox 中出现,而不在 IE 中出现。
如果之前的动画还没有完成,你可能会遇到这个问题。确保停止以前的动画。例如:
$("a.mylink").click(function() { $("#somediv").stop().toggle(); return false; });
这里的关键是stop()。
stop()