美文网首页
判断浏览器类型

判断浏览器类型

作者: G_whk | 来源:发表于2020-10-10 15:30 被阅读0次

    vue2.x版本源码(vue/src/core/util/env.js),确认当前代码运行环境的优秀代码,摘抄记录一下下。

    window.navigator.userAgent属性包含了浏览器类型、版本、操作系统类型、浏览器引擎类型等信息,通过这个属性来判断浏览器类型

    // Browser environment sniffing
    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)) || (weeexPlatform === 'ios')
    export const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge
    export const isPhantomJS = UA && /phantomjs/.test(UA)
    export const isFF = UA && UA.match(/firefox\/(\d+)/)
    
    

    相关文章

      网友评论

          本文标题:判断浏览器类型

          本文链接:https://www.haomeiwen.com/subject/nlaroctx.html