在這裏送上幾種IE使用模式!javascript
<meta http-equiv=「X-UA-Compatible」 content=「IE=8″>
1. Google Chrome Frame也能夠讓IE用上Chrome的引擎:java
<meta http-equiv=「X-UA-Compatible」 content=「chrome=1″ />
2.強制IE8使用IE7模式來解析web
<meta http-equiv=「X-UA-Compatible」 content=「IE=EmulateIE7″><!– IE7 mode –>
//或者
<meta http-equiv=「X-UA-Compatible」 content=「IE=7″><!– IE7 mode –>
3.強制IE8使用IE6或IE5模式來解析chrome
<meta http-equiv=「X-UA-Compatible」 content=「IE=6″><!– IE6 mode –>瀏覽器
<meta http-equiv=「X-UA-Compatible」 content=「IE=5″><!– IE5 mode –>
4.若是一個特定版本的IE支持所要求的兼容性模式多於一種,如:服務器
<meta http-equiv=「X-UA-Compatible」 content=「IE=5; IE=8″ />
二.設定網站服務器以指定預設兼容性模式svn
若是服務器是本身的話,能夠在服務器上定義一個自訂標頭來爲它們的網站預設一個特定的文件兼容性模式。這個特定的方法取決於你的網站服務器。網站
錄入,下列的 web.config文件使Microsoft Internet Information Services (IIS)能定義一個自訂標頭以自動使用IE7 mode來編譯全部網頁。ui
另外還有一塊兒其餘的解決方案,例如google的google
ie7 – js中是一個JavaScript庫(解決IE與W3C標準的衝突的JS庫),使微軟的Internet Explorer的行爲像一個Web標準兼容的瀏覽器,支持更多的W3C標準,支持CSS二、CSS3選擇器。它修復了許多的HTML和CSS問題,並使 得透明PNG在IE五、IE6下正確顯示。
使IE5,IE6兼容到IE7模式(推薦)
<!–[if lt IE 7]>
<script src=」http://ie7-js.googlecode.com/svn/version/2.0(beta)/IE7.js」 type=」text/javascript」></script>
<![endif]–>
使IE5,IE6,IE7兼容到IE8模式
<!–[if lt IE 8]>
<script src=」http://ie7-js.googlecode.com/svn/version/2.0(beta)/IE8.js」 type=」text/javascript」></script>
<![endif]–>
使IE5,IE6,IE7,IE8兼容到IE9模式
<!–[if lt IE 9]>
<script src=」http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js」></script> <![endif]–> 解決PNG顯示問題