admin管理员组文章数量:1344448
How can I know how many li
there are inside in the first ul
?
I know I can use .length, but I want just the number of first-ul
<ul class="first-ul">
<li>1</li>
<li>2</li>
<li>
<ul class="second-ul">
<li>2.1</li>
<li>2.2</li>
</ul>
</li>
</ul>
/
How can I know how many li
there are inside in the first ul
?
I know I can use .length, but I want just the number of first-ul
<ul class="first-ul">
<li>1</li>
<li>2</li>
<li>
<ul class="second-ul">
<li>2.1</li>
<li>2.2</li>
</ul>
</li>
</ul>
http://jsfiddle/5oykbysk/
Share asked Aug 25, 2014 at 16:44 user2600853user2600853 1011 silver badge12 bronze badges 1- So you're asking how to select direct children of an element? – cookie monster Commented Aug 25, 2014 at 17:08
4 Answers
Reset to default 5Use >
to get immediate children li
:
alert(number = $('ul.first-ul > li').length);
FIDDLE:
http://jsfiddle/5oykbysk/1/
See JQUERY DOCS for details
[].filter.call(
document.getElementsByClassName('first-ul')[0].children,
function (el) {
return el.nodeName === 'LI';
}
).length
use jQuery child selector
. Try this:
$('ul.first-ul > li').length
DEMO
it's the best and easy way :
var x = document.getElementsByClassName(".first-ul").childElementCount;
alert (x);
Visit https://www.w3schools./jsref/prop_element_childelementcount.asp
本文标签: jqueryHow many li there are inside ul with javascriptStack Overflow
版权声明:本文标题:jquery - How many li there are inside ul with javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743689535a2522473.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论