ボタンが押されたらブラウザ別に違うページにジャンプさせる(サブウィンドウ版)


動作ブラウザ 【 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 - - - - - - - - - - -

ポイント if (document.all) jpURL = "ie.html"; if (document.layers) jpURL = "nn4.html"; if (!document.all && document.getElementById) jpURL = "nn6.html"; subWin.location.href = jpURL;
説  明 ボタンが押されたらブラウザ別に違うページをサブウィンドウに表示するには処理先関数でブラウザを判別した後に「サブウィンドウ名.location.href」にジャンプ先のページを指定します。
サンプル <html> <head> <title>ボタンが押されたらブラウザ別に違うページにジャンプさせる(サブウィンドウ版)</title> <script language="JavaScript"><!-- function jump() { jpURL = "normal.html"; if (document.all) jpURL = "ie.html"; if (document.layers) jpURL = "nn4.html"; if (!document.all && document.getElementById) jpURL = "nn6.html"; subWin.location.href = jpURL; } subWin = window.open("blank.html","sw","width=320,height=240"); // --></script> </head> <body> <form> <input type="button" value="Go!" onClick="jump()"> </form> </body> </html>
補足説明 なし

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

写真素材 PIXTA