判断IE8下是否开启了兼容模式

1 if (window.navigator.appName == " Microsoft Internet Explorer " ) {
2 if ( ! document.documentMode || document.documentMode < 8 ) {
3 alert( " 请使用IE8以上版本!如果您启用了IE8的兼容模式,请您关闭它,以免不能正常使用系统! " );
4 window.location.href = " tools/GoodBrowser.aspx " ;
5 }
6 }

 

你可能感兴趣的:(ie8)