h5页面 判断是在微信打开还是在浏览器打开

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

猜你喜欢

转载自blog.csdn.net/Q_004/article/details/84783613