windows:ie8

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
windows:ie8 [2009/07/27 15:32] ともやんwindows:ie8 [2019/05/18 02:23] (現在) – 外部編集 非ログインユーザー
行 5: 行 5:
 <script type="text/javascript"> <script type="text/javascript">
 <!-- <!--
-document.write( +document.write("このページのドキュメントモードは "); 
-    "このページのドキュメントモードは " + +if (document.documentMode) 
-    "<span style='color: blue'>IE"+{ 
-    document.documentMode + "</span> です。");+    document.write( 
 +        "<span style='color: blue'>IE " + 
 +        document.documentMode + "</span>"); 
 +
 +else 
 +
 +    document.write("<span style='color: red'>不明</span>"); 
 +
 +document.write(" です。");
 // --> // -->
 </script> </script>
行 15: 行 23:
 <script type="text/javascript"> <script type="text/javascript">
 <!-- <!--
-document.write( +document.write("このページのドキュメントモードは "); 
-    "このページのドキュメントモードは " + +if (document.documentMode) 
-    "<span style='color: blue'>IE"+{ 
-    document.documentMode + "</span> です。");+    document.write( 
 +        "<span style='color: blue'>IE " + 
 +        document.documentMode + "</span>"); 
 +
 +else 
 +
 +    document.write("<span style='color: red'>不明</span>"); 
 +
 +document.write(" です。");
 // --> // -->
 </script> </script>
 </html> </html>
 +^document.documentMode の値  ^  説明  ^
 +|  8|IE8 標準モードの場合|
 +|  7|IE7 互換モードの場合|
 +|  5|IE5 互換モードの場合|
 +|  undefined|Firefox など IE8 以外で表示した場合|
 +
 +===== サーバサイドで互換モードを指定する =====
 + HTML ヘッダに以下のメタタグを記述する。
 +<code>
 +<head>
 +    <title>ページ タイトル</title>
 +    <meta http-equiv="X-UA-Compatible" content="IE=8" />
 +</head>
 +</code>
 +^メタタグ  ^  説明  ^
 +|content="IE=8"  |IE8 標準モードで表示するように指示  |
 +|content="IE=7"  |IE7 互換モードで表示するように指示  |
 +|content="IE=5"  |IE5 互換モードで表示するように指示  |
 +|content="IE=5; IE=8"  |複数の互換モードをサポートしているブラウザでは、もっとも高いバージョンのモードが選択される。  |
 +====== 参考文献 ======
 +[[http://msdn.microsoft.com/ja-jp/library/cc817574.aspx|META タグと将来の互換性のロック]] - MSDN\\
 +[[http://msdn.microsoft.com/ja-jp/library/cc288325(VS.85).aspx|ドキュメント互換性の定義]] - MSDN\\
 +
  • windows/ie8.1248676339.txt.gz
  • 最終更新: 2019/05/18 02:23
  • (外部編集)