IE更新到更新版本11.0.35后,在内容可编辑块中编辑Hangul时,“keydown”事件和DOM突变的时间发生了变化。
如何在Javascript中检测IE更新版本?
(IE ScriptEngineMajor / Minor / BuildVersion函数没有用,因为即使在相同的“更新版本”的情况下它也是不同的)
答案 0 :(得分:0)
function getInternetExplorerVersion()
// Returns the version of Windows Internet Explorer or a -1
// (indicating the use of another browser).
{
var rv = -1; // Return value assumes failure.
if (navigator.appName == 'Microsoft Internet Explorer') {
var ua = navigator.userAgent;
var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
if (re.exec(ua) != null)
rv = parseFloat(RegExp.$1);
}
return rv;
}
function checkIEVersion() {
var msg = "You're not using Windows Internet Explorer.";
var ver = getInternetExplorerVersion();
if (ver > -1) {
console.log(ver);
}
}