至少我想要计算一篇文章中有多少部分。如果这不适用于这些元素,我也可以使用普通的“div”标签。 抱歉我的英语不好。
<article>
<section>
<p>text</p>
</section>
<section>
<p>example</p>
</section>
</article>
答案 0 :(得分:2)
您可以使用:
$("article section").length
答案 1 :(得分:0)
试试这个:
<div>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
</div>
脚本:
var a=$("div p").length;
alert(a);
答案 2 :(得分:0)
如果您有多个<article>
,并想知道每个中有多少人:
$('article').each(function(){
var secCount = $(this).find('section').length;
});