以前寫好的網頁,在IE 6/ IE 7都OK的,現在用IE 8來瀏覽,竟然發現格式有點歪
有一些簡單的「緊急維修手續」
快速的短期修正
您有一個適用於 Windows Internet Explorer 7 的現有網頁,而您想要進行最少的修改作業,將更新後的網頁用於 Windows Internet Explorer 8 ,此時有兩種方法可用。您可以在每一個網頁加入相容性模式中繼標籤,強制 Windows Internet Explorer 8 以 Windows Internet Explorer 7 的方式呈現網頁。或者,您也可以在握有網頁伺服器控制權的情況下,設定伺服器傳送自訂 HTTP 回應標頭 ( 等同於每一個網頁的中繼標籤 ) 以自動新增相容性。
如何修改每個網頁
請將下列 HTML 中繼標籤放到各網頁的 HEAD 項目中 ( 在 TITLE 或 META 之外的標籤前面 ) :
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
這會告知 Windows Internet Explorer 8 以 Windows Internet Explorer 7 的方式呈現每個網頁,修正您的網站。
如何設定伺服器自動修改各網頁
如果要在每個網頁自動加入類似於 HTML 中繼標籤的相同相容性,請設定您的伺服器傳送下列標頭:
X-UA-Compatible:IE=EmulateIE7
要設定 Microsoft Internet Information Services (IIS) 7.0 ,請如下設定 Web.config 檔案:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=EmulateIE7" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
( 請將 Web.config 檔案加到您要套用變更的目錄中 )
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=EmulateIE7" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
( 請將 Web.config 檔案加到您要套用變更的目錄中 )
請看這篇微軟文章(中文),寫得很清楚 ---- http://msdn.microsoft.com/zh-tw/library/cc817570.aspx
更多詳細的方法,請參閱 -- http://msdn.microsoft.com/zh-tw/library/cc817570.aspx
資料來源:http://www.dotblogs.com.tw/mis2000lab/archive/2009/04/14/8007.aspx