將事件監聽器附加到特定元素時,可能需要檢查使用者是否當前使用Internet Explorer (IE) 執行特定操作或停用其他瀏覽器的功能。本文探討了實現此目的的方法,並為各種場景提供了解決方案。
要確定事件是否在 IE 中觸發,您可以利用 documentMode 屬性。此屬性僅在 IE 中可用,並傳回瀏覽器渲染引擎的目前版本。以下程式碼範例示範了這種方法:
$('.myClass').on('click', function(event) { //Abort the function if not in IE if (!document.documentMode) { return; } //Execute IE-specific actions here });
如果您只需要檢查IE11 或更高版本,可以使用UAParser.js 函式庫來擷取相關使用者瀏覽器的詳細信息,包括其版本。以下的程式碼說明了這種方法:
$(document).ready(function() { //Parse user agent string to determine user's browser var parser = new UAParser(); var uaInfo = parser.getResult(); // Handle the event listeners based on the UA information if (uaInfo.browser.family === 'Microsoft Edge') { //Do something for IE } else if (uaInfo.browser.family === 'IE' && uaInfo.browser.major >= 11) { //Do something for IE11+ } });
近年來,Microsoft Edge 瀏覽器已過渡到使用 Chromium 渲染引擎。要在檢查中正確處理Edge,您可以使用以下程式碼片段:
if (navigator.userAgent.includes('Edge')) { //Handle the Edge browser here }
在Chromium 過渡之前,Edge 表現出不同的用戶代理( UA) 字串。這是一個仍然可以偵測 IE11 及更早版本的函數:
function detectIE() { var ua = window.navigator.userAgent; var msie = ua.indexOf('MSIE '); var trident = ua.indexOf('Trident/'); //Return IE version or false based on the UA string if (msie > 0) { return parseInt(ua.substring(msie + 5, ua.indexOf('.', msie)), 10); } else if (trident > 0) { return parseInt(ua.substring(rv + 3, ua.indexOf('.', rv)), 10); } else { return false; } }
以上是如何偵測事件偵聽器中 Internet Explorer 的使用情況?的詳細內容。更多資訊請關注PHP中文網其他相關文章!