如何检测该浏览器为微信浏览器

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

 

posted @ 2016-08-30 14:39  雪明瑶  阅读(281)  评论(0编辑  收藏  举报