function is_weixin(){//判断浏览器是否是微信内置浏览器
var ua = navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i)=="micromessenger") {
if(ua.match(/mobile/)) {
alert("weixin 移动端");
}else{
alert(ua);
}
} else {
alert("不是weixin");
}
}
is_weixin();
function is_weixin(){//判断浏览器是否是微信内置浏览器
var ua = navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i)=="micromessenger") {
if(ua.match(/mobile/)) {
alert("weixin 移动端");
}else{
alert(ua);
}
} else {
alert("不是weixin");
}
}
is_weixin();