<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.111cn.net/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>css教程 js判斷瀏覽器類型與瀏覽器版本</title>
<script type="text/網頁特效">
var sys = {};
var ua = navigator.useragent.tolowercase();
if (window.activexobject)
sys.ie = ua.match(/msie ([d.]+)/)[1]
else if (document.getboxobjectfor)
sys.firefox = ua.match(/firefox/([d.]+)/)[1]
else if (window.messageevent && !document.getboxobjectfor)
sys.chrome = ua.match(/chrome/([d.]+)/)[1]
else if (window.opera)
sys.opera = ua.match(/opera.([d.]+)/)[1]
else if (window.opendatabase)
sys.safari = ua.match(/version/([d.]+)/)[1];
//以下進行測試
if(sys.ie) document.write('ie: '+sys.ie);
if(sys.firefox) document.write('firefox: '+sys.firefox);
if(sys.chrome) document.write('chrome: '+sys.chrome);
if(sys.opera) document.write('opera: '+sys.opera);
if(sys.safari) document.write('safari: '+sys.safari);
</script>
</head>
<body>
ie
只有ie支援建立activex控制項,因此她有一個其他瀏覽器沒有的東西,就是activexobject函數。只要判斷window對象存在activexobject函數,就可以明確判斷出當前瀏覽器是ie。而ie各個版本典型的useragent如下:
mozilla/4.0 (compatible; msie 8.0; windows nt 6.0)
mozilla/4.0 (compatible; msie 7.0; windows nt 5.2)
mozilla/4.0 (compatible; msie 6.0; windows nt 5.1)
mozilla/4.0 (compatible; msie 5.0; windows nt)
其中,版本號碼是msie之後的數字。
firefox
firefox中的dom元素都有一個getboxobjectfor函數,用來擷取該dom元素的位置和大小(ie對應的中是getboundingclientrect函數)。這是firefox專屬的,判斷它即可知道是當前瀏覽器是firefox。firefox幾個版本的useragent大致如下:
mozilla/5.0 (windows; u; windows nt 5.2) gecko/2008070208 firefox/3.0.1
mozilla/5.0 (windows; u; windows nt 5.1) gecko/20070309 firefox/2.0.0.3
mozilla/5.0 (windows; u; windows nt 5.1) gecko/20070803 firefox/1.5.0.12
其中,版本號碼是firefox之後的數字。
opera
opera提供了專門的瀏覽器標誌,就是window.opera屬性。opera典型的useragent如下:
opera/9.27 (windows nt 5.2; u; zh-cn)
opera/8.0 (macintosh; ppc mac os x; u; en)
mozilla/5.0 (macintosh; ppc mac os x; u; en) opera 8.0
其中,版本號碼是靠近opera的數字。
safari
safari瀏覽器中有一個其他瀏覽器沒有的opendatabase函數,可做為判斷safari的標誌。safari典型的useragent如下:
mozilla/5.0 (windows; u; windows nt 5.2) applewebkit/525.13 (khtml, like gecko) version/3.1 safari/525.13
mozilla/5.0 (iphone; u; cpu like mac os x) applewebkit/420.1 (khtml, like gecko) version/3.0 mobile/4a93 safari/419.3
其版本號碼是version之後的數字。
chrome
chrome有一個messageevent函數,但firefox也有。不過,好在chrome並沒有firefox的getboxobjectfor函數,根據這個條件還是可以準確判斷出chrome瀏覽器的。目前,chrome的useragent是:
mozilla/5.0 (windows; u; windows nt 5.2) applewebkit/525.13 (khtml, like gecko) chrome/0.2.149.27 safari/525.13
</body>
</html>
javascript判斷瀏覽器版本
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>js 判斷瀏覽器</title>
</head>
<body>
<hr>
<!--判斷訪問者的瀏覽器(類型)以及版本-->
<script type="text/javascript">
var browser=navigator.appname
var b_version=navigator.appversion
var version=parsefloat(b_version)
document.write("browser name: "+ browser)
document.write("
")
document.write("browser version: "+ version)
</script>
其它資訊
<script type="text/javascript">
document.write("browser: ")
document.write(navigator.appname + "")
document.write("browserversion: ")
document.write(navigator.appversion + "")
document.write("code: ")
document.write(navigator.appcodename + "")
document.write("platform: ")
document.write(navigator.platform + "")
document.write("cookies enabled: ")
document.write(navigator.cookieenabled + "")
document.write("browser's user agent header: ")
document.write(navigator.useragent + "")
</script>
css判斷使用者瀏覽器版本資訊
<!--[if ie]>
<h1>您正在使用ie瀏覽器</h1>
<!--[if ie 5]>
<h2>版本 5</h2>
<![endif]-->
<!--[if ie 5.0]>
<h2>版本 5.0</h2>
<![endif]-->
<!--[if ie 5.5]>
<h2>版本 5.5</h2>
<![endif]-->
<!--[if ie 6]>
<h2>版本 6</h2>
<![endif]-->
<!--[if ie 7]>
<h2>版本 7</h2>
<![endif]-->
<![endif]-->