判断是否为微信浏览器

function isWeiXinClient() {
    var ua = navigator.userAgent.toLowerCase(); 
    if (ua.match(/MicroMessenger/i)=="micromessenger") { 
        return true; 
    } else { 
        return false; 
    }
}
// 测试
alert(isWeiXinClient());

你可能感兴趣的:(判断是否为微信浏览器)