赞
踩
function _isMobile () {
let flag = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)
return flag
}
if(_isMobile()) {
alert("手机端");
this.$router.replace('/m_index');
} else {
alert("pc端");
this.$router.replace('/pc_index');
}
var ua = navigator.userAgent.toLowerCase();
console.log(ua,'ua')
if (/android|adr/gi.test(ua)) {
alert("安卓");
}else if(/iPad/gi.test(ua) ){
alert("ipad");
}else if(/\(i[^;]+;( U;)? CPU.+Mac OS X/gi.test(ua)){
alert("苹果");
}
var ua = navigator.userAgent.toLowerCase(); if(ua.match(/weibo/i) == "weibo"){ console.log('新浪微博'); }else if(ua.indexOf('qq/')!= -1){ console.log('QQ客户端'); }else if(ua.match(/MicroMessenger/i)=="micromessenger"){ console.log('微信'); var v_weixin = ua.split('micromessenger')[1]; v_weixin = v_weixin.substring(1,6); v_weixin = v_weixin.split(' ')[0]; if(v_weixin.split('.').length == 2){ v_weixin = v_weixin + '.0'; } if(v_weixin < '6.0.2'){ console.log('微信低于6.0.2版本'); }else{ console.log('微信高于6.0.2版本'); } }else{ console.log('其他'); }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。