テキストフィールドの内容をインラインフレームに表示する


動作ブラウザ 【 IE:3.0  NN:6.0
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows - × × × × - × -
Macintosh - × × × × - - ×
UNIX - - - - - × × × × - - -
Dreamcast - - - - - - - - - - × × -

ポイント txt = document.myFORM.fText.value; myFrame.document.open(); myFrame.document.write(txt); myFrame.document.close();
説  明 メイン(呼び出し側)のページのテキストフィールドの内容をインラインフレームに書き込むには「インラインフレーム名.document.open()」で出力ストリームを開き、「インラインフレーム名.document.write(書き込む内容)」でデータを書き込みます。書き込みが終わったら「インラインフレーム名.document.close()」で出力ストリームを閉じます。
サンプル <html> <head> <title>テキストフィールドの内容をインラインフレームに表示する</title> <script language="JavaScript"><!-- function setIFtxt() { txt = document.myFORM.fText.value; myFrame.document.open(); myFrame.document.write(txt); myFrame.document.close(); } // --></script> </head> <body> <form name="myFORM"> <input type="text" name="fText"><br> <input type="button" value="インラインフレームに表示" onClick="setIFtxt()"> </form> <iframe src="dummy.html" name="myFrame" width="320" height="240"></iframe> </body> </html>
補足説明 インラインフレーム内のHTMLは以下の通りです。 <html> <head> <title></title> </head> <body> inline frame... </body> </html>

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!

写真素材 PIXTA