Posted in Javascript onDecember 26, 2011
关键点: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浏览器及其版本,非常实用。
javascript判断ie浏览器6/7版本加载不同样式表的实现代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@