ブラウザの情報からそれぞれ別のファイルにジャンプします。
<HTML> <HEAD> <TITLE>Browser Check</TITLE> </HEAD> <BODY> <SCRIPT TYPE="text/javascript"> <!-- if (navigator.userAgent.indexOf("MSIE")!=-1) {location.href = "iefile.html"}//インターネットエクスプローラ else if (navigator.userAgent.indexOf("Opera")!=-1) {location.href = "operafile.html"}//オペラ else if (navigator.userAgent.indexOf("Firefox")!=-1) {location.href = "fffile.html"}//ファイアフォックス else if (navigator.userAgent.indexOf("Safari")!=-1) {location.href = "safarifile.html"}//サファリ else if (document.layers) {location.href = "nn4file.html"}//ネットスケープver.4 else if (document.getElementById && !document.all) {location.href = "nn6file.html"}//ネットスケープver.6〜 //--> </SCRIPT> </BODY> </HTML> |