aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/document/close/index.html
blob: 67adcd294f295b0dced50b1bc51d4e98331ecbf8 (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
---
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">Синтаксис</h2>

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

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

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

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

{{Specifications}}

<h2 id="Браузерная_поддержка">Браузерная поддержка</h2>

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

<p> </p>