当前位置:   article > 正文

js 判断设备及安卓设备判断不准确问题_js判断手机端 华为失败

js判断手机端 华为失败
<!-- web 获取 设备类型.注意: 一旦app端设置了userAgent 将会覆盖设置自带的ua -->
  <script>
    var agent = "";
    function isAndroid() {
      agent = navigator.userAgent.toLowerCase();
      let result = {
        device: function () {
          if (/windows/.test(agent)) {
            return 'windows pc';
          } else if (/iphone|ipod/.test(agent) && /mobile/.test(agent)) {
            return 'iphone';
          } else if (/ipad/.test(agent) && /mobile/.test(agent)) {
            return 'ipad';
          } else if (/android/.test(agent) && /mobile/.test(agent)) {
            return 'android';
          } else if (/linux/.test(agent)) {
            return 'linux pc';
          } else if (/mac/.test(agent)) {
            return 'mac';
          } else {
            return 'other';
          }
        }(),
      };
      document.getElementById("agent").innerText = agent;
      document.getElementById("showAndroid").innerText = result.device;
      return result.device;
    }
  </script>


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

mozilla/5.0 (macintosh; intel mac os x 10_15_6) applewebkit/537.36 (khtml, like gecko) chrome/99.0.4844.51 safari/537.36

不准确的问题原因

当安卓或则iOS设备, 在其WebView组件里面设置了userAgent, 将覆盖掉原设备的userAgent, 会导致原来的判断代码失效

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/320960
推荐阅读
相关标签
  

闽ICP备14008679号