赞
踩
利用navigator对象的useragent属性, 返回当前浏览器的user agent字符串并进行解析,进而得到浏览器类型及版本。
var Sys = {};
var ua = navigator.userAgent.toLowerCase();
var s;
(s = ua.match(/rv:([\d.]+)\) like gecko/)) ? Sys.ie = s[1] :
(s = ua.match(/msie ([\d.]+)/)) ? Sys.ie = s[1] :
(s = ua.match(/firefox\/([\d.]+)/)) ? Sys.firefox = s[1] :
(s = ua.match(/chrome\/([\d.]+)/)) ? Sys.chrome = s[1] :
(s = ua.match(/opera.([\d.]+)/)) ? Sys.opera = s[1] :
(s = ua.match(/version\/([\d.]+).*safari/)) ? Sys.safari = s[1] : 0;
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);
获取useragent字符串后,利用正则表达式进行解析,([\d.]+)
部分即为版本号捕获组,将其作为Sys的对应浏览器属性进行保存,进而得到浏览器类型及其版本号。
另外,可以通过一些IE与其他浏览器的不同接口来判断是否为ie浏览器:
if(window.addEventListener){
alert("not ie");
}else if(window.attachEvent){
alert("is ie");
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。