首页 > 编程语言 > 详细

JavaScript - Node.children和Node.childNodes的区别

时间:2017-07-02 09:40:43      阅读:312      评论:0      收藏:0      [点我收藏+]

写到这个也是因为群里的学长面试的时候遇到了这个问题,然后顺手分享了一下

首先是MDN里面对两个API的解释

children

Node.children is a read-only property that returns a live HTMLCollection of the child elements of Node.

childNodes

The Node.childNodes read-only property returns a live collection of child nodes of the given element where the first child node is assigned index 0.

所以children会返回你查找的节点里所有element子节点,而childNodes会返回所有element、文本、注释之类的节点,大概这样↓

技术分享

 

JavaScript - Node.children和Node.childNodes的区别

原文:http://www.cnblogs.com/osyo/p/7103924.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!