aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/close/index.html
blob: c626a6fb8e644dee956c7b97bbfb7fbf3da873c0 (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
---
title: Document.close()
slug: Web/API/Document/close
tags:
  - API
  - Document
  - HTML DOM
  - Method
  - Reference
  - メソッド
translation_of: Web/API/Document/close
---
<div>{{APIRef("DOM")}}</div>

<p><strong><code>Document.close()</code></strong> メソッドは、 {{domxref("Document.open()")}} で開かれた文書への書き込みを終了します。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox">document.close();
</pre>

<h2 id="Example" name="Example"></h2>

<pre>// 書きこむ文書を開きます。
document.open();

// 文書の内容を書き込みます。
document.write("&lt;p&gt;たったひとつの内容。&lt;/p&gt;");

// 文書を閉じます。
document.close();
</pre>

<h2 id="Specifications" name="Specifications">仕様書</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="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>

<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>

<div>{{Compat("api.Document.close")}}</div>