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 新手,我有一个简单的问题:
给定一组缩略图,共享同一个类,有些是可见的,有些是不可见的。
计算共享同一类和 is(':visible') 的元素数量的最佳方法是什么?
不需要循环,你可以这样做:
var visible_images = $('.myClass:visible').length;
或者
var visible_images = $('.myClass').filter(':visible').length;
$('.myclass:visible').length
伪类选择器可以用作元素/类/id 选择器字符串的一部分