var u = navigator.userAgent;
if (is_weixin() && u.indexOf('Android') > -1) {//安卓手机
} else if(is_weixin() && u.indexOf('Linux') > -1){//安卓手机
}else if(is_weixin() && u.indexOf('iPhone') > -1){//苹果手机
}else if (u.indexOf('Windows Phone') > -1) {//winphone手机
}
//是否在微信内打开
function is_weixin() {
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == "micromessenger") {
return true;
} else {
return false;
}
}
版权声明:本文为博主原创文章,转载请附上博文链接!
转载于:https://www.cnblogs.com/zhizhic/p/9964197.html