Document: close() Methode

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Die Document.close() Methode beendet das Schreiben in ein Dokument, das mit Document.open() geöffnet wurde.

Syntax

js
close()

Parameter

Keine.

Rückgabewert

Keiner (undefined).

Beispiele

js
// Open a document to write to it
document.open();

// Write the content of the document
document.write("<p>The one and only content.</p>");

// Close the document
document.close();

Spezifikationen

Specification
HTML Standard
# dom-document-close-dev

Browser-Kompatibilität

BCD tables only load in the browser