ďťż
Podstrony
|
telcocafeWitam!CZy ma ktoś może kod java script, który w zależności od rodzaju przeglądarki internetowj wyświetliłby daną stronę? Np. IE to index1.html, Mozilla to index2.htm... navigator.appName W ramach HEAD <script LANGUAGE="Javascript"> <!-- setTimeout('checkBrowser()', 1000); function checkBrowser () { userAg = navigator.userAgent; bName = navigator.appName; bVer = parseInt(navigator.appVersion); if (bVer >= 4) { if (bName.substring(0,9) == "Microsoft") // Redirect IE 4.0 window.location.href="ie4.htm"; else if (bName.substring(0,8) == "Netscape") // Redirect Netscape 4.0 window.location.href="nn4.htm"; else window.location.href="inne.htm"; } else { if (bVer == 3) { if (bName.substring(0,8) == "Netscape") // Redirect Netscape 3.0 window.location.href="nn3.htm"; else // Redirect all other browsers window.location.href="inne.htm"; } else { if (userAg.substring(0,31) == "Mozilla/2.0 (compatible; MSIE 3") { // Redirect IE 3.0 window.location.href="ie3.htm"; } else // Redirect all other browsers window.location.href = "inne.htm"; } // Else ... } // IF Bver = 3/ELSE ... } // Function ... // --> </SCRIPT> <NOSCRIPT> <META HTTP-EQUIV="Refresh" CONTENT='1; URL=inne.htm'> </NOSCRIPT> close() :blink: szkoda że nie szukasz w necie tyle tego jest, wszystko tylko na gotowe:( |
|||
Sitedesign by AltusUmbrae. |