js常用判断设备方法

以下就是整理的一些方法

// 运行环境是浏览器

export const inBrowser = typeof window !== 'undefined';

// 运行环境是微信

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

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

// 浏览器 UA 判断

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

export const isIE = UA && /msie|trident/.test(UA);

export const isIE9 = UA && UA.indexOf('msie 9.0') > 0;

export const isEdge = UA && UA.indexOf('edge/') > 0;

export const isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');

export const isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');

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

我建了一个前端微信交流群,欢迎大家加入,qq中转群号:1076484243

你可能感兴趣的:(js常用判断设备方法)