以下就是整理的一些方法
// 運(yùn)行環(huán)境是瀏覽器
export const inBrowser = typeof window !== 'undefined';
// 運(yùn)行環(huán)境是微信
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中轉(zhuǎn)群號:1076484243