码迷,mamicode.com
首页 > 其他好文 > 详细

浏览器 UA 判断

时间:2018-11-20 11:34:20      阅读:390      评论:0      收藏:0      [点我收藏+]

标签:family   nav   androi   browser   xen   oid   orm   col   iphone   

export const inBrowser = typeof window !== ‘undefined‘
export const inWeex = typeof WXEnvironment !== ‘undefined‘ && !!WXEnvironment.platform
export const weexPlatform = inWeex && WXEnvironment.platform.toLowerCase()
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

 

浏览器 UA 判断

标签:family   nav   androi   browser   xen   oid   orm   col   iphone   

原文地址:https://www.cnblogs.com/mengfangui/p/9987463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!