浏览器检查和各大平台判断

1、判断是否是浏览器

const inBrowser = typeof window !=='undefined' && Object.prototype.toString.call(window) !== '[object Object]';

2、下面判断用到的几个变量

   判断是不是Weex环境

const inWeex =typeof WXEnvironment !== 'undefined' &&!!WXEnvironment.platform

判断是Weex的那个版本

const weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();

获取浏览器的userAgent

const UA = inBrowser && window.navigator.userAgent.toLowerCase()

3、关于IE浏览器的判断

const isIE = UA && /msie|trident/.test(UA);
const isIE9 = UA && UA.indexOf('msie 9.0') > 0;
const isEdge = UA && UA.indexOf('edge/') > 0;

4、关于安卓和IOS的判断

const isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');
const isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');

5、是否是谷歌浏览器

const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;

6、判断是否为微信

const isWechat = UA && UA.indexOf('micromessenger') > 0

注:该知识点参考了Vue源码

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值