判断手机浏览器是微信还是QQAPP

is_weixn_qq() {
      let ua = navigator.userAgent.toLowerCase()
      if (ua.match(/MicroMessenger/i) && ua.match(/MicroMessenger/i)[0]) { // 微信
        return true
      } else if (ua.match(/\sQQ/i) && ua.match(/\sQQ/i)[0].replace(' ', '') === 'qq') { // QQ
        return true
      }
      return false
    }

你可能感兴趣的:(判断手机浏览器是微信还是QQAPP)