jquery - How many li there are inside ul with javascript - Stack Overflow

admin2025-04-03  0

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
Add a ment  | 

4 Answers 4

Reset to default 5

Use > 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

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743689539a215522.html

最新回复(0)