私のコードは次のようになります。
<div id="some_id">
<img src="some_image.png">
<img src="some_image.png">
<div class="another_div"></div>
<div class="another_div"></div>
</div>
その div 要素内の img タグの数をカウントしたい。
これは、すべての子の数を返すスタックオーバーフローに関する同様の質問から見つけました。
var count = $("#some_id").children().length;
このコードを変更するか、他の関数を使用して div 内の img タグの数をカウントするにはどうすればよいですか?