判断PC端浏览器类型

if (browserInfo.type !== 'IE' || (browserInfo.type == 'IE' && Number(browserInfo.version) > 9)) {
 //当前可用
 } else {
 // window.location.href = "http://10.2.4.52/dist/browser.html";
 window.location.href = "http://wf2.aspirecn.com/dist/browser.html";
 }
  
 function getBrowserInfo(){
 var ua = navigator.userAgent.toLocaleLowerCase();
 var browser = {
 type: null,
 version:0
 };
 if (ua.match(/msie/) != null || ua.match(/trident/) != null) {
 browser.type = "IE";
 browser.version = ua.match(/msie ([\d.]+)/) != null ? ua.match(/msie ([\d.]+)/)[1] : ua.match(/rv:([\d.]+)/)[1];
 } else if (ua.match(/firefox/) != null) {
 browser.type = "火狐";
 }else if (ua.match(/ubrowser/) != null) {
 browser.type = "UC";
 }else if (ua.match(/opera/) != null) {
 browser.type = "欧朋";
 } else if (ua.match(/bidubrowser/) != null) {
 browser.type = "百度";
 }else if (ua.match(/metasr/) != null) {
 browser.type = "搜狗";
 }else if (ua.match(/tencenttraveler/) != null || ua.match(/qqbrowse/) != null) {
 browser.type = "QQ";
 }else if (ua.match(/maxthon/) != null) {
 browser.type = "遨游";
 }else if (ua.match(/chrome/) != null) {
 var is360 = _mime("type", "application/vnd.chromium.remoting-viewer");
 function _mime(option, value) {
 var mimeTypes = navigator.mimeTypes;
 for (var mt in mimeTypes) {
 if (mimeTypes[mt][option] == value) {
 return true;
 }
 }
 return false;
 }
 if(is360){
 browser.type = '360';
 }else{
 browser.type = 'chrome';
 }
 }else if (ua.match(/safari/) != null) {
 browser.type = "Safari";
 }else{
 console.log(ua);
 console.log('未检测到浏览器类型');
 }
 return browser;

转载于:https://www.cnblogs.com/liuhao-web/p/11224811.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值