Latest web development tutorials
×

JavaScript & HTML DOM リファレンスマニュアル

概要

JavaScript オブジェクト

JavaScript Array オブジェクト JavaScript Boolean オブジェクト JavaScript Date オブジェクト JavaScript Math オブジェクト JavaScript Number オブジェクト JavaScript String オブジェクト JavaScript RegExp オブジェクト JavaScript グローバルプロパティ/関数 JavaScript 演算子

Browser オブジェクト

Window オブジェクト Navigator オブジェクト Screen オブジェクト History オブジェクト Location オブジェクト

DOM オブジェクト

HTML DOM Document オブジェクト HTML DOM Elementオブジェクト HTML DOM 属性オブジェクト HTML DOM イベントオブジェクト

HTML オブジェクト

<a> <area> <audio> <base> <blockquote> <body> <button> <canvas> <col> <colgroup> <datalist> <del> <details> <dialog> <embed> <fieldset> <form> <iframe> <frameset > <img> <ins> <input> - button <input> - checkbox <input> - color <input> - date <input> - datetime <input> - datetime-local <input> - email <input> - file <input> - hidden <input> - image <input> - month <input> - number <input> - range <input> - password <input> - radio <input> - reset <input> - search <input> - submit <input> - text <input> - time <input> - url <input> - week <keygen> <link> <label> <legend> <li> <map> <menu> <menuItem> <meta> <meter> <object> <ol> <optgroup> <option> <param> <progress> <q> <script> <select> <source> <style> <table> <td> <th> <tr> <textarea> <title> <time> <track> <video>

HTML DOM documentModeプロパティ

ドキュメント・オブジェクト・リファレンス ドキュメントオブジェクト

定義と使用法

documentModeプロパティは、モードドキュメントをレンダリングするブラウザを返します。

IE8は、!のDOCTYPEをHTMLに基づいて、別の方法を使用してページをレンダリングするか、いくつかの要素が存在します。

これらの要素は値を返す次のとおりです。

  • 5 - IE5でのページ表示モード
  • IE7で7--ページ表示モード
  • 8 - IE8のページ表示モード
  • 9 - IE9でページ表示モード

注意:DOCTYPEを指定しない場合、IE8は、IE5モードでページをレンダリングします。

文法

document.documentMode


ブラウザのサポート

Internet ExplorerFirefoxOperaGoogle ChromeSafari

IE8とIEのバージョンは、このプロパティをサポートした後documentModeブラウザはIE固有のプロパティです。


使用するには、ブラウザのページレンダリングモードに戻ります。

<html>
<body>

This document is displayed in:
<script>
document.write(document.documentMode);
</script>

</body>
</html>

»をお試しください


ドキュメント・オブジェクト・リファレンス ドキュメントオブジェクト