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;
}
}
版權聲明:本文為博主原創文章,轉載請附上博文鏈接!