blob: f1356e5b57d127ca57f7d84aef0ef7823f5a5c6f (
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
|
---
title: Document.close()
slug: Web/API/Document/close
tags:
- API
- Document
- 参考
- 方法
translation_of: Web/API/Document/close
---
<div>{{APIRef("DOM")}}</div>
<p><strong><code>Document.close()</code></strong> 用于结束由 对文档的 {{domxref("Document.write()")}} 写入操作,这种写入操作一般由 {{domxref("Document.open()")}} 打开。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox">document.close();</pre>
<h2 id="例子">例子</h2>
<pre>// 打开一个文档,以便写入数据
document.open();
// 写入文档内容
document.write("<p>文档内容~</p>");
// 关闭文档
document.close();
</pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">备注</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("HTML WHATWG", "#dom-document-close", "document.close()")}}</td>
<td>{{Spec2("HTML WHATWG")}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName("DOM2 HTML", "html.html#ID-98948567", "document.close()")}}</td>
<td>{{Spec2("DOM2 HTML")}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.Document.close")}}</p>
|