javaScript jQueryでdisplay:noneを持つ特定のクラスの要素を測定する方法はありますか?
例えば:
<div class="x" style="display: none;"></div>
<div class="x" style="display: none;"></div>
<div class="x"></div>
以下のコードを実行すると、class="x" を持つ要素が 3 つあるため、アラート "3" が表示されます。
var n = document.getElementsByClassName('x').length;
alert(n);
私のアラートがdisplay:noneの2つのクラス「x」のみを表示するための適切なセレクターは何でしょうか?
ご協力いただきありがとうございます!