判断微信浏览器

//判断是不是微信浏览器
function is_weixin() {
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == "micromessenger") {
return 1; //是
} else {
return 2; //否
}
}
相关文章
相关标签/搜索