--- title: Document.close() slug: Web/API/Document/close tags: - API - Document - HTML DOM - Справка - метод translation_of: Web/API/Document/close ---
{{APIRef("DOM")}}
Метод document.close()
завершает запись в документ, открытый с помощью document.open().
document.close();
// открытие документа для записи в него. // запись содержимого документа. // закрытие документа. document.open(); document.write("<p>The one and only content.</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")}} |
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-dataand send us a pull request.
{{Compat("api.Document.close")}}