首页 > 选择器 > :animated 返回值:Array<Element(s)>:animatedV1.2概述匹配所有正在执行动画效果的元素示例描述:只有对不在执行动画效果的元素执行一个动画特效HTML 代码:<button id="run">Run</button><div></div>jQuery 代码:$("#run").click(function(){ $("div:not(:animated)").animate({ left: "+=20" }, 1000); });上一篇::header 下一篇::focus