写到这个也是因为群里的学长面试的时候遇到了这个问题,然后顺手分享了一下
首先是MDN里面对两个API的解释
children
Node.children
is a read-only property that returns a liveHTMLCollection
of the childelements
ofNode
.
childNodes
The
Node.childNodes
read-only property returns a live collection of childnodes
of the given element where the first child node is assigned index 0.
所以children会返回你查找的节点里所有element子节点,而childNodes会返回所有element、文本、注释之类的节点,大概这样↓
时间: 2024-10-26 04:49:57