javascript判斷ie瀏覽器6/7版本載入不同樣式表的實現代碼

來源:互聯網
上載者:User

關鍵點: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瀏覽器及其版本,非常實用。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.