document.close()は、document.open()メソッドで開いたドキュメントを閉じるメソッド。
構文
document.close();
戻り値
なし。
サンプル
サンプルの動作について
「サンプルウィンドウを開く」ボタンをクリックすると、ウィンドウを開き、「Hello World!」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function openSampleWindow() {
var $sampleWindow = window.open();
$sampleWindow.document.open();
$sampleWindow.document.write( "<p>Hello World!</p>" );
$sampleWindow.document.close();
}
</script>
function openSampleWindow() {
var $sampleWindow = window.open();
$sampleWindow.document.open();
$sampleWindow.document.write( "<p>Hello World!</p>" );
$sampleWindow.document.close();
}
</script>
HTML
<button onclick="openSampleWindow();">サンプルウィンドウを開く</button>