gpt4 book ai didi

javascript - 如何使用纯 JavaScript 来定位 IE10 及以下版本?

转载 作者:行者123 更新时间:2023-11-27 22:51:37 26 4
gpt4 key购买 nike

现在,我正在这样做:

if (Function('/*@cc_on return document.documentMode===10@*/ ')()) { 
// do stuff
}

但这仅针对 IE10。如何才能让我的目标浏览器为 IE10 及更低版本? (使用相同的纯 JavaScript 方法?)

最佳答案

您始终可以像以前一样解析 UserAgent 字符串。 Heremany examples这向您展示了如何操作。

function isIE () {
var myNav = navigator.userAgent.toLowerCase();
return (myNav.indexOf('msie') != -1) ? parseInt(myNav.split('msie')[1]) : false;
}

if (isIE () && isIE () < 9) {
// is IE version less than 9
} else {
// is IE 9 and later or not IE
}

关于javascript - 如何使用纯 JavaScript 来定位 IE10 及以下版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38005100/

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