标签: javascript jquery
当我在带动画的网站上使用firefox / chrome的开发者工具执行以下命令时,它总是返回0.
$(":animated").length
我想知道整个网站上有多少动画。
我忘了什么吗?
除了这一行,我没有代码。我只将它插入chrome / firefox控制台。
答案 0 :(得分:1)
因为您必须先选择容器。
适用于(Chrome)
$("body :animated").length
我试着https://api.jquery.com/animated-selector/
答案 1 :(得分:1)
尝试以下方法:
console.log($(document).find(':animated').length);
控制台将输出文档上的动画元素数。