IE8 兼容模式 - 文档模式

IE8 Compatibility Mode - document.documentMode

本文关键字:模式 文档 IE8      更新时间:2023-09-26

我需要一个javascript代码"document.documentMode",它在真正的IE8模式下的值为8,在IE7模式下的值为7。

在这两种情况下,用户代理字符串将相同,并且仍将声明 IE8。请注意,此 JavaScript 变量仅在 IE8 中可用。

基本上,我必须检测某人何时运行IE8(tue)和IE8(在兼容模式下)。

"

基本上,我必须检测某人何时运行IE8(tue)和IE8(在兼容模式下)。

var ie8 = /msie's+8/i.test(navigator.userAgent);
var mod = document.documentMode;
if (ie8 && mod == 8) {
   alert("found!");
}
// or
var ok = (
    /msie's+8/i.test(navigator.userAgent) &&
    document.documentMode == 8
);
if (ok) {
    // ...