js一行代碼解決各類IE兼容問題

在網站開發中難免由於各類兼容問題苦惱,針對兼容問題,其實javascript

IE給出瞭解決方案html

Google也給出瞭解決方案html5

百度也應用了這種方案去解決IE的兼容問題 java


百度源代碼以下

<!Doctype html>
<html xmlns=http://www.w3.org/1999/xhtml xmlns:bd=http://www.baidu.com/2010/xbdml>;
<head>
<meta http-equiv=Content-Type content=「text/html;charset=utf-8″>
<meta http-equiv=X-UA-Compatible content=IE=EmulateIE7>
<title>百度一下,你就知道 </title>
<script>var wpo={start:new Date*1,pid:109,page:‘superpage’}</script>
<meta http-equiv=X-UA-Compatible content=IE=EmulateIE7>

能夠打開百度,右鍵查看源碼看下!咱們能夠看下文件頭是否存在這樣一行代碼!

這句話的意思是強制使用IE7模式來解析網頁代碼!

在這裏送上幾種IE使用模式!
<meta http-equiv=「X-UA-Compatible」 content=「IE=8″>

2. Google Chrome Frame也可讓IE用上Chrome的引擎:

<meta http-equiv=「X-UA-Compatible」 content=「chrome=1″ />
3.強制IE8使用IE7模式來解析

<meta http-equiv=「X-UA-Compatible」 content=「IE=EmulateIE7″><!– IE7 mode –>
//或者
<meta http-equiv=「X-UA-Compatible」 content=「IE=7″><!– IE7 mode –>
4.強制IE8使用IE6或IE5模式來解析

<meta http-equiv=「X-UA-Compatible」 content=「IE=6″><!– IE6 mode –>

<meta http-equiv=「X-UA-Compatible」 content=「IE=5″><!– IE5 mode –>
5.若是一個特定版本的IE支持所要求的兼容性模式多於一種,如:

<meta http-equiv=「X-UA-Compatible」 content=「IE=5; IE=8″ />
二.設定網站服務器以指定預設兼容性模式

若是服務器是本身的話,能夠在服務器上定義一個自訂標頭來爲它們的網站預設一個特定的文件兼容性模式。這個特定的方法取決於你的網站服務器。

錄入,下列的 web.config文件使Microsoft Internet Information Services (IIS)能定義一個自訂標頭以自動使用IE7 mode來編譯全部網頁。

另外還有一塊兒其餘的解決方案,例如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顯示問題

只需將透明png圖片命名爲*-trans.png

須要注意的是:此方法對背景平鋪(background-repeat)和背景(background-position)沒法起到任何做用,默認會佔滿整個容器。
3、<meta http-equiv=」X-UA-Compatible」 content=」IE=edge,chrome=1″ />
建立html5時發現這麼一句話,不知其什麼意思,百度以下:
這 樣寫能夠達到的效果是若是安裝了GCF,則使用GCF來渲染頁面,若是沒安裝GCF,則使用最高版本的IE內核進行渲染。Google Chrome Frame(谷歌內嵌瀏覽器框架GCF)。這個插件可讓用戶的IE瀏覽器外不變,但用戶在瀏覽網頁時,實際上使用的是Google Chrome瀏覽器內核,並且支持IE六、七、8等多個版本的IE瀏覽器。web

相關文章
相關標籤/搜索