From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/api/document/close/index.html | 59 +++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 files/zh-cn/web/api/document/close/index.html (limited to 'files/zh-cn/web/api/document/close') diff --git a/files/zh-cn/web/api/document/close/index.html b/files/zh-cn/web/api/document/close/index.html new file mode 100644 index 0000000000..f1356e5b57 --- /dev/null +++ b/files/zh-cn/web/api/document/close/index.html @@ -0,0 +1,59 @@ +--- +title: Document.close() +slug: Web/API/Document/close +tags: + - API + - Document + - 参考 + - 方法 +translation_of: Web/API/Document/close +--- +
{{APIRef("DOM")}}
+ +

Document.close() 用于结束由 对文档的 {{domxref("Document.write()")}} 写入操作,这种写入操作一般由 {{domxref("Document.open()")}} 打开。

+ +

语法

+ +
document.close();
+ +

例子

+ +
// 打开一个文档,以便写入数据
+document.open();
+
+// 写入文档内容
+document.write("<p>文档内容~</p>");
+
+// 关闭文档
+document.close();
+
+ +

规范

+ + + + + + + + + + + + + + + + + + + + + +
规范状态备注
{{SpecName("HTML WHATWG", "#dom-document-close", "document.close()")}}{{Spec2("HTML WHATWG")}}
{{SpecName("DOM2 HTML", "html.html#ID-98948567", "document.close()")}}{{Spec2("DOM2 HTML")}}
+ +

浏览器兼容性

+ + + +

{{Compat("api.Document.close")}}

-- cgit v1.2.3-54-g00ecf