Count immediate child div elements using jQuery

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

I have the following HTML node structure:

<
12条回答
  •  情歌与酒
    2020-11-28 01:46

    Try this for immediate child elements of type div

    $("#foo > div")[0].children.length
    

提交回复
热议问题