x
 
<!DOCTYPE html>
<html>
<body>
<h1>Document 对象</h1>
<h2>documentMode 属性</h2>
<p>文档模式为:</p>
<p id="demo"></p>
<p>documentMode 属性仅适用于 Internet Explorer。所有其他浏览器返回 undefined。</p>
<script>
document.getElementById("demo").innerHTML = document.documentMode;
</script>
</body>
</html>