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/ja/web/api/document/close/index.html | 62 ++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 files/ja/web/api/document/close/index.html (limited to 'files/ja/web/api/document/close') diff --git a/files/ja/web/api/document/close/index.html b/files/ja/web/api/document/close/index.html new file mode 100644 index 0000000000..c626a6fb8e --- /dev/null +++ b/files/ja/web/api/document/close/index.html @@ -0,0 +1,62 @@ +--- +title: Document.close() +slug: Web/API/Document/close +tags: + - API + - Document + - HTML DOM + - Method + - Reference + - メソッド +translation_of: Web/API/Document/close +--- +
{{APIRef("DOM")}}
+ +

Document.close() メソッドは、 {{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