使用 JavaScript 识别浏览器详细信息
使用 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);
说明:
以上是如何使用 JavaScript 识别用户的浏览器和版本?的详细内容。更多信息请关注PHP中文网其他相关文章!