© Ce document utilise Manuel du site Web PHP chinois Libérer
匹配所有正在执行动画效果的元素
只有对不在执行动画效果的元素执行一个动画特效
<button id="run">Run</button><div></div>
$("#run").click(function(){ $("div:not(:animated)").animate({ left: "+=20" }, 1000); });