我想知道是否有一种方法可以在没有 id 或 class(es) <img>
的标签之前计算用户上传的标签。<hr>
到目前为止,这是我的代码:
var num = $('#content img').length;
alert(num);
<div id="content">
<!--The number of the "empty" paragraphs changes if users add more paragraphs-->
<p></p>
<p></p>
<!--These are the images I look for-->
<p>
<img src="image.jpg">
<img src="image2.jpg">
</p>
<hr>
<p>
<img src="image3.jpg">
</p>
<p></p>
</div>