Count immediate child div elements using jQuery

后端 未结 12 2270
无人共我
无人共我 2020-11-28 01:19

I have the following HTML node structure:

<
12条回答
  •  庸人自扰
    2020-11-28 01:52

    $("#foo > div") 
    

    selects all divs that are immediate descendants of #foo
    once you have the set of children you can either use the size function:

    $("#foo > div").size()
    

    or you can use

    $("#foo > div").length
    

    Both will return you the same result

提交回复
热议问题