码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 浏览器类型及版本号

时间:2017-07-25 21:22:46      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:style   记录   asc   agent   msi   代码   info   cti   ret   

项目中偶尔用到判断浏览器类型及相关版本问题,现记录相关代码:

 

function getBrowserInfo(userAgent) {

            var browserName, browserVersion;

            if (userAgent.indexOf("MSIE") > -1) {
                var types = userAgent.substring(userAgent.indexOf("MSIE"));
                var Info = (types.split(";")[0]).split(" ");
                browserName = Info[0];
                browserVersion = Info[1];
            } else if (userAgent.indexOf("Firefox") > -1) {
                var types = userAgent.substring(userAgent.indexOf("Firefox"));
                var Info = (types.split(" ")[0]).split("/");
                browserName = Info[0];
                browserVersion = Info[1];
            } else if (userAgent.indexOf("Chrome") > -1) {
                var types = userAgent.substring(userAgent.indexOf("Chrome"));
                var Info = (types.split(" ")[0]).split("/");
                browserName = Info[0];
                browserVersion = Info[1];
            } else if (userAgent.indexOf("Opera") > -1) {
                var types = userAgent.substring(userAgent.indexOf("Opera"));
                var Info = (types.split(" ")[0]).split("/");
                browserName = Info[0];
                browserVersion = Info[1];
            } else if (userAgent.indexOf("Safari") > -1) {
                var types = userAgent.substring(userAgent.indexOf("Safari"));
                var Info = (types.split(" ")[0]).split("/");
                browserName = Info[0];
                browserVersion = Info[1];
            } else if (userAgent.indexOf("rv") > -1) { // for IE11
                var substring = userAgent.substring(userAgent.indexOf("rv"), userAgent.indexOf(")"));
                browserName = "MSIE";
                browserVersion = substring.split(":")[1];
            }
            if (browserVersion.indexOf(‘.‘) != -1) {
                browserVersion = browserVersion.substring(0, browserVersion.indexOf(‘.‘));
            }
            return browserName + "-" + browserVersion;
        }

 

 

测试:

getBrowserInfo(navigator.userAgent);

 

JavaScript 浏览器类型及版本号

标签:style   记录   asc   agent   msi   代码   info   cti   ret   

原文地址:http://www.cnblogs.com/julygift/p/7236219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!