Document: close() メソッド
Document.close()
メソッドは、 Document.open()
で開かれた文書への書き込みを終了します。
構文
js
close()
引数
なし。
返値
なし (undefined
)。
例
js
// 書きこむ文書を開きます。
document.open();
// 文書の内容を書き込みます。
document.write("<p>たったひとつの内容。</p>");
// 文書を閉じます。
document.close();
仕様書
Specification |
---|
HTML Standard # dom-document-close-dev |
ブラウザーの互換性
BCD tables only load in the browser