//JS判断是否为微信浏览器(微信客户端)的函数
function is_weixin() {
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == "micromessenger") {
return true;
} else {
return false;
}
}
(adsbygoogle = window.adsbygoogle || []).push({});
来源:https://www.02405.com/archives/1806
