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


動作ブラウザ 【 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"; parent.fBottom.location.href = jpURL;
説  明 ボタンが押されたらブラウザ別に違うページを表示するには処理先関数でブラウザを判別した後に「parent.フレーム名.location.href」にジャンプ先のページを指定します。
サンプル <html> <head> <meta http-equiv="content-type" content="text/html;charset=shift_jis"> <title>ボタンが押されたらブラウザ別に違うページにジャンプさせる(フレーム版)</title> <frameset rows="50,*"> <frame src="menu.html"> <frame src="blank.html" name="fBottom"> </frameset> </head> </html>
補足説明 menu.htmlの内容は以下のとおりです。 <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"; parent.fBottom.location.href = jpURL; } // --></script> </head> <body> <form> <input type="button" value="Go!" onClick="jump()"> </form> </body> </html>

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

写真素材 PIXTA