サブウィンドウから親ウィンドウのフォームにデータを表示する


動作ブラウザ 【 IE:4.0   NN:3.0
Internet Explorer Netscape Navigator Opera iCab Safari
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 7.0 7.x 2.x 1.x
Windows × - × -
Macintosh × - ×
UNIX - - - - - × -

ポイント window.opener.document.myFORM.tBox.value="はろ〜";
説  明 サブウィンドウ側から親ウィンドウ側のフォームは「window.opener.document.フォーム名.エレメント名」で操作することができます。ただし、同一ドメイン上でない場合は、親ウィンドウを操作することはセキュリティ違反となり処理することはできません。
サンプル <html> <head> <title>サブウィンドウから親ウィンドウのフォームにデータを表示する</title> <script Language="JavaScript"><!-- subWin = window.open("sub.html","sub","width=160,height=160"); // --></script> </head> <body> <form name="myFORM"> <input type="text" name="tBox"> </form> </body> </html>
補足説明 サブウィンドウ側のHTMLは以下の通りです。 <html> <head> <title>サブウィンドウから親ウィンドウのフォームにデータを表示する</title> <script Language="JavaScript"><!-- function setData() { window.opener.document.myFORM.tBox.value="はろ〜"; } // --></script> </head> <body> <a href="#" onMouseover="setData()">マウス乗せて</a> </body> </html>

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



写真素材 PIXTA