Dreamweaver TechniqueJAVA Script サンプル | CSS sample | JAVA Applet sample | Flash Sample
HTML4.0 riference | DynamicHTMLXHTML | XML sample | XSLT sample | RIKO's ASP Trial

ドキュメントを操作する

"); DW1.document.write(""); DW1.document.write(""); DW1.document.write("image.gif"); DW1.document.write("
"); DW1.document.write("イメージも表\示\できます。"); DW1.document.write("

"); DW1.document.write("


"); DW1.document.write("
"); DW1.document.write(""); DW1.document.write("

"); DW1.document.write("
"); DW1.document.write("JavaScriptも記述できます。"); DW1.document.write("

 

R HOUSE | RIKO's Trial Page | Shirley's Pettit Case | Shirley's i-box | Shirley's little box
"); DW1.document.write(""); DW1.document.close(); } //-->

*開いたウィンドウに文字を記述する

document.open(★)
document.close ()
document.clear()

documentオブジェクトopenメソッドは、ドキュメントを開いて書き出し可能な状態にします。通常のHTML以外のドキュメントとして書き出しを行う場合は、★にMIMEタイプを指定します。MIMEタイプとは、ページのコンテンツ種類を表す文字列で、テキストタイプならtext/plain、GIF画像ならimage/gifになります。省略した場合は、text/html(HTML文書)になります。

openメソッドで書き出しを開始したドキュメントは、必ずcloseメソッドで書き出しを終了してください。終了しないと、ページが読み込み中の状態のままになってしまいます。

clearメソッドは、ドキュメントの内容を消去します。他のフレームやウィンドウの内容を消去したい場合に使用します。