Document:documentElement 属性
值
一个 Element
对象。
示例
js
const rootElement = document.documentElement;
const firstTier = rootElement.childNodes;
// firstTier is a NodeList of the direct children of the root element
// such as <head> and <body>
for (const child of firstTier) {
// do something with each direct child of the root element
}
注释
对于任何非空的 HTML 文档,documentElement
将始终是 <html>
元素。对于任何非空的 XML 文档,documentElement
将始终是文档的根元素。
规范
规范 |
---|
DOM 标准 # ref-for-dom-document-documentelement① |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。