使用 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中文網其他相關文章!