首页 > Web开发 > 详细

js获取浏览器版本信息

时间:2018-12-28 15:00:19      阅读:147      评论:0      收藏:0      [点我收藏+]
//获取当前浏览器类型和版本号
"use strict";
let agent = navigator.userAgent.toLowerCase();
let regStr_ff = /firefox\/[\d.]+/gi;
let regStr_chrome = /chrome\/[\d.]+/gi;

//IE11以下
if (agent.indexOf("msie") > 0) {
    pass;
}

//IE11版本中不包括MSIE字段
if (agent.indexOf("trident") > 0 && agent.indexOf("rv") > 0) {
    pass;
}

//firefox
if (agent.indexOf("firefox") > 0) {
    let num = agent.match(regStr_ff)[0].match(/[\d.]+/)[0].substr(0, 2);
    if (num < 58) {
       pass;
    }
}

//Chrome
if (agent.indexOf("chrome") > 0) {
    let num = agent.match(regStr_chrome)[0].match(/[\d.]+/)[0].substr(0, 2);
    if (num < 61) {
        pass;
    }
}

在HTML <head> 标签中引入js 即可

js获取浏览器版本信息

原文:https://www.cnblogs.com/eunuch/p/10190513.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!