Document: children 属性
只读的 children
属性返回一个实时的 HTMLCollection
,其中包含调用它的文档的所有子 elements
。
对于 HTML 文档,这通常只是根 <html>
元素。
有关文档中特定 HTML 元素的子元素,请参阅 Element.children
。
值
一个 HTMLCollection
,它是一个实时的、有序的 DOM 元素集合,这些元素是当前文档的子元素。您可以使用集合上的 item()
方法或使用 JavaScript 数组样式表示法访问集合中的各个子节点。
如果文档没有元素子节点,则 children
是一个空列表,其 length
为 0
。
示例
js
document.children;
// HTMLCollection [<html>]
// Usually only contains the root <html> element, the document's only direct child
有关文档中特定 HTML 元素的子元素,请参阅 Element.children
。
规范
规范 |
---|
DOM 标准 # ref-for-dom-parentnode-children① |
浏览器兼容性
BCD 表格仅在浏览器中加载