限制网页仅可在微信客户端打开

function is_weixn(){
    var ua = navigator.userAgent.toLowerCase();
    if(ua.match(/MicroMessenger/i)=="micromessenger") {//这就是微信用的内置浏览器
        return true;
    } else {
        return false;
    }
}

你可能感兴趣的:(限制网页仅可在微信客户端打开)