HTML DOM childNodes 属性 HTML DOM attributes 属性 HTML DOM classList 属性 HTML DOM childNodes 属性 实例 获取 body 元素的子节点集合: document.body.childNodes; 试一试 » 定义和用法 childNodes 属性返回包含被选节点的子节点的 NodeList。 提示: 如果选定的节点没有子节点,则该属性返回不包含节点的 NodeList。如需循环子节点列表,使用 nextSibling 属性,要比使用父对象的 childNodes 列表效率更高。 浏览器支持 所有主要浏览器都支持 childNodes 属性 语法 _element_.childNodes 技术细节 返回值: NodeList 对象, 代表节点集合。 DOM 版本 Core Level 1 HTML DOM attributes 属性 HTML DOM classList 属性