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 セレクター文字列の一部として使用できます。