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


動作ブラウザ 【 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"; 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"; location.href = jpURL; } // --></script> </head> <body> <form> <input type="button" value="Go!" onClick="jump()"> </form> </body> </html>
補足説明 動作ブラウザは全て○になっていますが、これは実行できない場合でもエラーにならない、という事を示しています。サンプルでは判別不能な場合はnormal.htmlにジャンプするようになっています。

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

写真素材 PIXTA