© 本文档使用 PHP中文网手册 发布
匹配所有正在执行动画效果的元素
只有对不在执行动画效果的元素执行一个动画特效
<button id="run">Run</button><div></div>
$("#run").click(function(){ $("div:not(:animated)").animate({ left: "+=20" }, 1000); });