もり ひろゆきの日々是勉強

日々思ったことやIT関連のメモなどをのほほんと綴っていきたいと・・・。(^^;

ホーム 連絡をする 同期する ( RSS 2.0 ) Login
投稿数  1920  : 記事  12  : コメント  16323  : トラックバック  163

ニュース

Microsoft Innovation Center

MICでは各種無償セミナーを実施しています。
こちら
そして、スピーカーは僭越ながら私がお話させていただいております。
一生懸命努めさせていただきますので、よろしければご参加くださいm(__)m

平行運用はじめました。

  • 現在、こちらのほうで平行運用を行っております。

自己紹介

  • もり ひろゆき(森 博之)と申します。

    極東IT Engineersというコミュニティの代表です。

    本業は東京でソフトウェア開発のお仕事をしております。いわゆるDeveloperですね(^^;

    仕事ではVB,C#といろいろと渡り歩いてはおりますが、主に.NET系の業務アプリの開発が多いです。

    というか仕事となったら必死で何でも勉強しますが(^^;;;;

    最近ではMicrosoft Innovation Centerで講師もさせていただいておりますが、撃たれ弱いのでお手柔らかにお願いしますm(__)m

    まったく関係ありませんが、たこ焼き機も持っています。 関西人です。

    エントリの内容は私が個人的に収集した情報を元に書いていますが、あくまで個人的なメモ用途ですので内容の正確性を保証するものでありません。あらかじめご了承くださいm(__)m

Microsoft MVP

MCP


  • 70-316 Developing and Implementing Windows-based Applications with Microsoft Visual C# .NET and Microsoft Visual Studio .NET

    70-536 Microsoft .NET Framework 2.0 - Application Development Foundation


  • MCTS: :.NET Framework 2.0 Web アプリケーション
    70-528 Microsoft .NET Framework 2.0 - Web-based Client Development


  • MCTS: Microsoft SQL Server 2005
    70-431 Microsoft SQL Server 2005 - Implementation and Maintenance

Wankuma MVP


  • Wankuma MVP for OOO(= Original Object-Oriented)

iKnow!

etc.

  • 人気ブログランキング - もり ひろゆきの日々是勉強

    スカウター : もり ひろゆきの日々是勉強

    あわせて読みたい

書庫

日記カテゴリ

リンク

たまにはこんなエントリも書いてみようかしら。

今年の3月に公開になっているInternet Explorer 8 Beta1ですが、CSS 2.1準拠などWeb標準の準拠に向けてのバグフィックスを続けているようです。

そのためレンダリングエンジンに若干変更があります。

具体的にはIE8では下記の3つのレンダリングモードを持っています。

  • Quirks(クワークス)モード
  • IE7標準モード
  • IE8標準モード

Quirks(クワークス)モードというのはIE5.5まで繰り返されてきた発展途上期のレンダリングモードですね。

IE7標準モードはその名の通り、IE7での標準(Standard)モードですね。 QuirksモードよりWeb標準に近いレンダリングモードです。

そして、IE8標準モードはWeb標準への準拠にFocusしたレンダリングモードですね。

で、IE8ではレンダリングモードの指定が未指定である状態で、通常のHTMLを読み込むとIE8標準モードをデフォルトのレンダリングモードとしてレンダリングを行い、DOCTYPEなどの指定の内容によってQuirksモードとIE8標準モードの切り替えを行うワケです。

で、上記にもありますように互換性のため3つのモードがあり、その切り替え方法ということになるのですが、大きく分けると下記の3種類の方法でレンダリングモードを切り替えることができます。

  • EmulateIE7ボタンによる切り替え
  • Developer Toolsによる切り替え
  • 互換モードスイッチによる切り替え

まず、EmulateIE7ボタンによる切り替えは、その名の通りIE8を起動するとEmulateIE7というボタンがついています。 このボタンをクリックすると「IE8を完全に終了させて再起動するとIE7モードに切り替わります」といった主旨のメッセージが表示されます。 これはBeta2には再起動なしで切り替えできるようになるそうです。

これにより、IE7の標準モードに切り替わるワケです。 もちろん、再度クリックして再起動するとIE8標準モードへ戻ります。

次にDeveloper Toolsです。 これはIE8から標準搭載される開発者向けのツールなのですが、HTMLのツリー表示を行ったり、CSSを閲覧できたり、スクリプトのステップ実行や変数のウォッチを行えたりするツールなのですが、この中にレンダリングエンジンを切り替えることができる機能が搭載されています。 これは再起動不要でそのままレンダリングモードの切り替えができますので互換性のチェックを行う際に便利です。

これらは、あくまでコンテンツを見る側での操作が必要となる切り替え方法です。 ですので、IE8にバージョンアップしたことで表示が崩れるサイトがあれば、こういった操作により正しく表示できる可能性が高くなります。

そして、次にユーザー側の操作ではなく、サーバーやコンテンツ側で切り替える方法ですが、互換モードスイッチと呼ばれるスイッチが搭載されています。 これは大きく分けてhttpレスポンスヘッダに設定する方法とコンテンツ側に設定する方法があります。

まず、互換モードスイッチについて説明するとスイッチには下記の種類があります。

    モード 互換モードスイッチ
    Quirks(クワークス)モード IE=5
    IE7標準モード IE=7
    Quirks/IE7標準モード IE=EmulateIE7
    IE8標準モード IE=8
    最新モード IE=edge

互換モードスイッチは指定されるとそのDOCTYPEなどは関係なく、そのレンダリングモードで描画されますが、一部例外があります。

最初に書いたように通常、何も未指定の場合はDOCTYPEの記述があった場合、IE8標準モードとQuirksモードをDOCTYPEの内容により切り替えていましたが、互換モードスイッチで「IE=EmulateIE7」を指定されると、DOCTYPEによるレンダリングモードの切り替えがIE7標準モードとQuirksモードによる切り替えとなります。 つまり、従来のIE7との互換性が高いモードとして切り替えてくれるのがこのEmulateIE7というスイッチですね。

それ以外にも、常に最新のレンダリングモードで描画させたい場合は互換モードスイッチ「IE=edge」を指定すると、新しいIEのバージョンに対応した最新のレンダリングモードで描画されます。

さて、肝心の互換モードスイッチの指定方法ですが、まずIISなどのWebサーバー側設定する場合はhttpレスポンスヘッダーにて「X-UA-Compatible」という名前で値に互換モードスイッチを指定します。 

そしてクライアント側ではmetaタグで指定します。 指定方法はHEAD要素内に

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

といった形でcontent属性の値に適切な互換モードスイッチを指定することでレンダリングモードが切り替わります。

これらのスイッチの優先順位は

  1. Developer Tools
  2. metaタグ
  3. httpレスポンスヘッダー
  4. DOCTYPE

という形になっていますので、その優先順位を考慮しつつ、適用されることをお奨めします(^^)

IE8になってこのようにデフォルトが変わってしまうので要注意ですね(^^)

2008/06/18 11:00 追記:互換モードスイッチ「IE=EmulateIE7」ですが、IE8 Beta1ではKB951804を適用しないと有効になりません。 Beta2以降は標準で入っているようですが・・・。

投稿日時 : 2008年6月17日 22:24

コメント

# re: IE8の互換性について。 2008/06/18 10:03 fnya
おぉ。これはすばらしい。。。
Developer Tools でも設定が出来て、優先順位もちゃんとあるですね。
情報ありがとうございます!

# re: IE8の互換性について。 2008/06/18 21:40 ひろえむ
#fnyaさん

いえいえ(^^;

お約束していたのに書くのが遅くなってすみませんでしたm(__)m

# いつのまにか IE8 正式版がリリースされていた。 2009/03/24 20:43 ラボブログ
スパイスラボ神部です。 三連休ですっかり見逃していましたが、早くも IE8 正式版が出ていたのですね。 すっかり出遅れてしまったので、はてな検索を使ってIE8 ...

# re: IE8の互換性について。 2009/04/22 13:45 bigsky
情報拝見しました。

細かく説明されていて大変参考になりました。

# re: IE8の互換性について。 2009/04/23 8:51 もり ひろゆき
#bigskyさん


お役に立てて幸いです(^^)

# doxycycline 500mg https://doxycyline1st.com/
doxycycline 100mg price 2022/02/26 9:29 Doxycycline
doxycycline 500mg https://doxycyline1st.com/
doxycycline 100mg price

# ritonavir covid https://paxlovid.best/
ema paxlovid 2022/09/07 22:42 Paxlovid
ritonavir covid https://paxlovid.best/
ema paxlovid

# writing essay service z58rby 2022/09/08 22:49 Charlosmox

Regards. Numerous data.
https://definitionessays.com/ university dissertations

# generic ed pills https://erectiledysfunctionpills.shop/ 2022/10/14 16:29 Erectile
generic ed pills https://erectiledysfunctionpills.shop/

# prednisone in india https://prednisone20mg.icu/ 2022/10/15 7:03 Prednisone
prednisone in india https://prednisone20mg.icu/

# buy cheap prednisone https://prednisone20mg.site/
average price of prednisone 2022/11/15 10:55 Prednisone
buy cheap prednisone https://prednisone20mg.site/
average price of prednisone

# treatments for ed https://ed-pills.site/
best ed medications 2022/11/17 15:59 EdPills
treatments for ed https://ed-pills.site/
best ed medications

# free dating online chat https://datingonlinehot.com/
japanese dating 2022/12/09 11:48 Dating
free dating online chat https://datingonlinehot.com/
japanese dating

# top dating websites https://datingonline1st.com/
site of dating 2023/01/17 17:28 Dating
top dating websites https://datingonline1st.com/
site of dating

# write my term paper for me t48mxa 2023/02/10 11:37 Albertosed

Regards, I appreciate it.
https://essaywritingservicelinked.com/ how to write an admissions essay for college

# pay for essay j59gej 2023/02/26 17:07 CharlesSnoff
You actually explained that terrifically.
buy uk essay https://quality-essays.com/ buy academic essays

# thesis research n446zg 2023/03/03 5:49 Josephbried

Amazing a good deal of beneficial material.
customer service thesis topics https://writingthesistops.com/ thesis formatting service ireland

# university dissertation r37gmd 2023/03/06 2:35 Gregorysaipt

Wow plenty of terrific facts.
extended essay help https://essaytyperhelp.com how to write a body paragraph for an essay https://topswritingservices.com

# speech writing help p51nge 2023/03/07 2:11 EugeneSib

Amazing lots of wonderful facts.
law essay writing service https://essaytyperhelp.com online writers https://writeadissertation.com

# writing scholarship essay r838rm 2023/03/08 22:05 Gregorysaipt
You actually reported that exceptionally well.
do my essay for me cheap https://writingpaperforme.com argumentative essay for college https://essaywriting4you.com

# custom dissertation writing j570om 2023/03/09 1:30 EugeneSib

With thanks! An abundance of postings!
cheap write my essay https://essaywritingservicetop.com dissertation editor https://essayssolution.com

# resume writing services online g560xw 2023/03/09 19:40 Gregorysaipt

Wow lots of valuable data!
write a essay https://essaywritingservicebbc.com how to write descriptive essays https://helptowriteanessay.com

# essay on helping poor people x91nrp 2023/03/10 21:43 EugeneSib

Thanks a lot! Helpful information.
cheap dissertation writing services https://researchproposalforphd.com buy a essay https://custompaperwritersservices.com

# rutgers college essay w19olb 2023/03/12 3:56 EugeneSib

Very good write ups. Cheers!
basic essay writing https://phdthesisdissertation.com postgraduate thesis https://essaypromaster.com

# website evaluation essay a20wyh 2023/03/12 18:22 EugeneSib
You actually mentioned it adequately!
how to write a persuasive essay introduction https://writingpaperforme.com education dissertations https://payforanessaysonline.com

# best college essay writing services h66mjm 2023/03/13 23:48 EugeneSib

Many thanks! A lot of write ups.
best dissertation https://researchpaperwriterservices.com can someone write my essay https://essaywriting4you.com

# writing assignment help f760zg 2023/04/02 13:50 EugeneSib

Helpful advice. Cheers.
college essay leadership https://helpwritingdissertation.com thesis means https://custompaperwritingservices.com

# how to get cytotec online - https://cytotecsale.pro/# 2023/04/28 13:03 Cytotec
how to get cytotec online - https://cytotecsale.pro/#

# bv treatment over the counter https://overthecounter.pro/# 2023/05/08 12:52 OtcJikoliuj
bv treatment over the counter https://overthecounter.pro/#

# The plugins developed for WordPress 2023/05/09 23:16 Justas
The plugins developed for WordPress serve to enhance the features and functions of a WordPress website, allowing you to build your awesome and functional site https://t.me/wpigaming/648 Customise WordPress with powerful, professional and intuitive fields.

# ï»¿plavix generic https://plavix.guru/ generic plavix 2023/10/23 16:44 Plavixxx
plavix generic https://plavix.guru/ generic plavix

# farmacia online più conveniente https://farmaciait.pro/ comprare farmaci online con ricetta 2023/12/04 3:41 Farmacia
farmacia online più conveniente https://farmaciait.pro/ comprare farmaci online con ricetta

# ed medications online https://edpills.tech/# best ed drug 2023/12/22 23:45 EdPills
ed medications online https://edpills.tech/# best ed drug

Post Feedback

タイトル
名前
Url:
コメント