gpt4 book ai didi

javascript - JavaScript 中的浏览器检测?

转载 作者:IT老高 更新时间:2023-10-28 13:13:47 27 4
gpt4 key购买 nike

如何使用 JavaScript 确定确切的浏览器和版本?

最佳答案

navigator.saysWho = (() => {
const { userAgent } = navigator
let match = userAgent.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || []
let temp

if (/trident/i.test(match[1])) {
temp = /\brv[ :]+(\d+)/g.exec(userAgent) || []

return `IE ${temp[1] || ''}`
}

if (match[1] === 'Chrome') {
temp = userAgent.match(/\b(OPR|Edge)\/(\d+)/)

if (temp !== null) {
return temp.slice(1).join(' ').replace('OPR', 'Opera')
}

temp = userAgent.match(/\b(Edg)\/(\d+)/)

if (temp !== null) {
return temp.slice(1).join(' ').replace('Edg', 'Edge (Chromium)')
}
}

match = match[2] ? [ match[1], match[2] ] : [ navigator.appName, navigator.appVersion, '-?' ]
temp = userAgent.match(/version\/(\d+)/i)

if (temp !== null) {
match.splice(1, 1, temp[1])
}

return match.join(' ')
})()

console.log(navigator.saysWho) // outputs: `Chrome 89`

顾名思义,这将告诉您浏览器提供的名称和版本号。

当您在多个浏览器上测试新代码时,它可以方便地对测试和错误结果进行排序。

关于javascript - JavaScript 中的浏览器检测?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2400935/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com