aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/document/close/index.html
blob: ba5d9ff72ac9431a78b58ee7fcfcfa57bcc8e5da (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
---
title: Document.close()
slug: Web/API/Document/close
tags:
  - API
  - Document
  - HTML DOM
  - Справка
  - метод
translation_of: Web/API/Document/close
---
<p>{{APIRef("DOM")}}</p>

<p>Метод <code>document.close()</code> завершает запись в документ, открытый с помощью <a href="/en/DOM/document.open" title="en/DOM/document.open">document.open()</a>.</p>

<h2 id="Syntax" name="Syntax">Синтаксис</h2>

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

<h2 id="Example" name="Example">Пример</h2>

<pre>// открытие документа для записи в него.
// запись содержимого документа.
// закрытие документа.
document.open();
document.write("&lt;p&gt;The one and only content.&lt;/p&gt;");
document.close();
</pre>

<h2 id="Спецификации">Спецификации</h2>

<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>

<div class="hidden">
<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>and send us a pull request.</p>
</div>

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

<p> </p>