サブウィンドウから親ウィンドウのページURLを変更し親ウィンドウを前面に表示する


動作ブラウザ 【 IE:3.0  NN:2.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 - - - - - - - - - - × × -

ポイント window.opener.focus(); window.opener.location.href = "http://www.yahoo.co.jp/";
説  明 サブウィンドウから親ウィンドウを操作するにはwindow.openerを使います。親ウィンドウのページを更新するのであれば「window.opener.location.href = "ジャンプ先のページURL"」となります。その親ウィンドウを前面に表示するにはwindow.opener.focus()とします。
サンプル <html> <head> <title>サブウィンドウから親ウィンドウのページURLを変更する</title> <script Language="JavaScript"><!-- subWin = window.open("sub.html","sub","width=320,height=240"); // --></script> </head> <body> </body> </html>
補足説明 サブウィンドウ側のスクリプトは以下のようになります。 <html> <head> <title>サブウィンドウから親ウィンドウのページURLを変更する</title> <script Language="JavaScript"><!-- function setURL() { window.opener.focus(); window.opener.location.href = "http://www.yahoo.co.jp/"; } // --></script> </head> <body> <a href="javaScript:setURL()">Yahooのページを親ウィンドウに表示</a> </body> </html>

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

写真素材 PIXTA