最初にブラウザの違いを判別する


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

ポイント str = navigator.appName.toUpperCase(); if (str.indexOf("NETSCAPE") >= 0) alert("Netscape"); if (str.indexOf("EXPLORER") >= 0) alert("Explorer");
説  明 ブラウザ名は「navigator.appName」で取得できます。ただし、ブラウザによっては互換性のためNetscapeの文字列を返してしまうものもあります。このような場合はnavigator.userAgent内の文字列からブラウザを特定する必要があります。
サンプル <html> <head> <title>最初にブラウザの違いを判別する</title> <script Language="JavaScript"><!-- str = navigator.appName.toUpperCase(); if (str.indexOf("NETSCAPE") >= 0) alert("Netscape"); if (str.indexOf("EXPLORER") >= 0) alert("Explorer"); // --></script> </head> <body> </body> </html>
補足説明 navigator.userAgentで完全にブラウザを特定できるわけではありません。

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

写真素材 PIXTA