JS 判断当前浏览器是否为微信浏览器

function isWeixinBrowser() {
      var ua = navigator.userAgent.toLowerCase();
      if (ua.indexOf("micromessenger") != -1) {
        return true;
      } else {
        return false;
      }
    }

    // 使用示例
    if (isWeixinBrowser()) {
      console.log("当前为微信浏览器");
    } else {
      console.log("当前不是微信浏览器");
    }

你可能感兴趣的:(JS,javascript,微信,前端)