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;
}
}
JS判断手机类型,及是否在微信内打开
最新推荐文章于 2024-06-28 09:54:13 发布