aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/document/documentelement/index.html
blob: 2b1034009e512264db74a21a98747191a2ed559e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
title: document.documentElement
slug: Web/API/Document/documentElement
tags:
  - API
  - DOM
  - Property
  - Reference
  - 只读
  - 属性
translation_of: Web/API/Document/documentElement
---
<div>{{ApiRef("DOM")}}</div>

<p><code style="font-style: normal;"><strong>Document.documentElement</strong></code> 是一个会返回文档对象({{domxref("document")}})的根{{domxref("Element", "元素")}}的只读属性(如HTML文档的 {{HTMLElement("html")}} 元素)。</p>

<h2 id="语法">语法</h2>

<pre class="syntaxbox">var <var>element</var> = <var>document</var>.documentElement;
</pre>

<h2 id="示例">示例</h2>

<pre class="brush:js">const rootElement = document.documentElement;
const firstTier = rootElement.childNodes;

// firstTier 是由根元素的所有子节点组成的一个 NodeList
for (let i = 0; i &lt; firstTier.length; i++) {
   // 使用根节点的每个子节点
   // 如 firstTier[i]
}</pre>

<h2 id="备注">备注</h2>

<p>对于任何非空 HTML 文档,调用 <code>document.documentElement</code> 总是会返回一个 {{HTMLElement("html")}} 元素,且它一定是该文档的根元素。借助这个只读属性,能方便地获取到任意文档的根元素。</p>

<p>HTML 文档通常包含一个子节点 {{HTMLElement("html")}},但在它前面可能还有个 DOCTYPE 声明。XML 文档通常包含多个子节点:根元素,DOCTYPE 声明,和 <a href="/zh-CN/docs/DOM/ProcessingInstruction">processing instructions</a></p>

<p>所以,应当使用 <code>document.documentElement</code> 来获取根元素, 而不是 {{Domxref("document.firstChild")}}</p>

<h2 id="规范">规范</h2>

<table class="spectable standard-table">
 <tbody>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">备注</th>
  </tr>
  <tr>
   <td>{{SpecName('DOM2 Core','core.html#ID-87CD092','Document.documentElement')}}</td>
   <td>{{Spec2('DOM2 Core')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('DOM3 Core','core.html#ID-87CD092','Document.documentElement')}}</td>
   <td>{{Spec2('DOM3 Core')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('DOM4','#dom-document-documentelement','Document.documentElement')}}</td>
   <td>{{Spec2('DOM4')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('DOM WHATWG','#dom-document-documentelement','Document.documentElement')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>



<p>{{Compat("api.Document.documentElement")}}</p>