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.
我在 jquery 中使用特定时间的 show
$('#main_div').hide(); $('#main_div').show(3000);
是他们的任何 jquery 选择器来检测显示动画当前正在运行。可能吗???
可以通过选择器检测一个动画是否在运行:animated,但无法判断运行的是哪个动画
:animated
你可以检查:
if( $("#main_div").is(':animated') ) { ... }
参见:动画