首页 > 技术文章 > 判断是否在微信内打开

lw5116 2017-07-07 16:36 原文

        //是否在微信内打开  
        function isWeixin() {  
            var ua = navigator.userAgent.toLowerCase();  
            if (ua.match(/MicroMessenger/i) == "micromessenger") {  
                return true;  
            } else {  
                return false;  
            }  
        }

 

推荐阅读