DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> javascript判斷ie浏覽器6/7版本加載不同樣式表的實現代碼
javascript判斷ie浏覽器6/7版本加載不同樣式表的實現代碼
編輯:關於JavaScript     
關鍵點:1、對浏覽器版本的判斷;2、修改樣式表路徑
其中第二點也常用在實時修改網頁模板、論壇風格的場合,實際上就是修改樣式表路徑來加載不同的樣式表。
代碼:
復制代碼 代碼如下:
<script type="text/javascript">
var browser=navigator.appName
var b_version=navigator.appVersion
var version=b_version.split(";");
try{ //代碼只針對ie浏覽器有效,為了避免在其他浏覽器報錯,可以用使用try{代碼體}catch(err){代碼體}來消除報錯
var trim_Version=version[1].replace(/[ ]/g,"");
if(browser=="Microsoft Internet Explorer" && trim_Version=="MSIE7.0")
{
//將"your-stylesheet-url"替換成想在ie7中加載的樣式表的路徑
document.styleSheets[0].href="your-stylesheet-url"; //關鍵點修改樣式表路徑的方法:document.styleSheets[0].href
}
else if(browser=="Microsoft Internet Explorer" && trim_Version=="MSIE6.0")
{
//將"your-another-stylesheet-url"替換成想在ie6中加載的樣式表的路徑
document.styleSheets[0].href="your-another-stylesheet-url";
}
}
catch(err) { //捕捉錯誤後不作任何處理也可
}
</script>

實用的js判斷浏覽器類型及版本
代碼:
復制代碼 代碼如下:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>實用的js判斷浏覽器類型及版本</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script language="JavaScript">
var imyeah={};
var ua=navigator.userAgent.toLowerCase();
var s;
(s=ua.match(/msie ([\d.]+)/)) ? imyeah.ie=s[1] :
(s=ua.match(/firefox\/([\d.]+)/)) ? imyeah.firefox=s[1] :
(s=ua.match(/chrome\/([\d.]+)/)) ? imyeah.chrome=s[1] :
(s=ua.match(/opera.([\d.]+)/)) ? imyeah.opera=s[1] :
(s=ua.match(/version\/([\d.]+).*safari/)) ? imyeah.safari=s[1] : 0;

//以下進行測試
if(imyeah.ie) document.write('IE: '+imyeah.ie);
if(imyeah.firefox) document.write('Firefox: '+imyeah.firefox);
if(imyeah.chrome) document.write('Chrome: '+imyeah.chrome);
if(imyeah.opera) document.write('Opera: '+imyeah.opera);
if(imyeah.safari) document.write('Safari: '+imyeah.safari);
</script>
</head>
<body>
</body>
</html>

這段代碼非常簡短,但能夠准確判斷ie、FF、Chrome、Opera、Safari浏覽器及其版本,非常實用。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved