欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

判断是android 还是 ios

程序员文章站 2022-03-27 12:25:03
...
 // 判断是安卓还是ios
    appSource() {
      const u = navigator.userAgent;
      const isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
      if (isiOS) {
        return "ios";
      } else {
        return "android";
      }
    },
//判断是微信还是微博
let ua = navigator.userAgent.toLowerCase();

//判断是不是微信浏览器
let isweixin = ua.match(/MicroMessenger/i) == "micromessenger";


//判断是不是微博浏览器
let isweibo = ua.match(/WeiBo/i) == "weibo";