document.open()は、document.write( string )メソッドやdocument.writeln( string )メソッドで書き込むためのドキュメントを開くメソッド。
構文
document.open();
戻り値
なし。
サンプル
サンプルの動作について
「サンプルウィンドウを開く」ボタンをクリックすると、ウィンドウを開き、「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>