溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

HTML 5兼容IE的寫(xiě)法是怎樣的

發(fā)布時(shí)間:2021-10-12 16:38:32 來(lái)源:億速云 閱讀:101 作者:柒染 欄目:web開(kāi)發(fā)

今天就跟大家聊聊有關(guān)HTML 5兼容IE的寫(xiě)法是怎樣的,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

<!DOCTYPE html> <!&ndash;[if IE]> <meta http-equiv=”X-UA-Compatible” content=”IE=8&Prime; /> <![endif]&ndash;> <!&ndash;[if IE 7]> <meta http-equiv=”X-UA-Compatible” content=”IE=7&Prime; /> <![endif]&ndash;> <!&ndash;[if IE 6]> <meta http-equiv=”X-UA-Compatible” content=”IE=6&Prime; /> <![endif]&ndash;>

關(guān)于X-UA-Compatible

目前絕大多數(shù)網(wǎng)站都用

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

來(lái)作為IE8的兼容方法,雖然微軟將IE向標(biāo)準(zhǔn)邁進(jìn)了一大步,而事實(shí)上IE8還存在一系列渲染的奇怪現(xiàn)象是不爭(zhēng)的事實(shí)。

誰(shuí)讓IE6那么多呢,或許2014年以后我們可以有更多的時(shí)間去關(guān)心IE8,而不是IE6或者IE7。

在X-UA-Compatible中可用的方法有:

<meta http-equiv="X-UA-Compatible" content="IE=5" > <meta http-equiv="X-UA-Compatible" content="IE=7" > <meta http-equiv="X-UA-Compatible" content="IE=8" > <meta http-equiv="X-UA-Compatible" content="IE=edge" >

其中***一行是永遠(yuǎn)以***的IE版本模式來(lái)顯示網(wǎng)頁(yè)的。

另外加上

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

而使用,Emulate模式后則更重視<!DOCTYPE>

所以目前來(lái)說(shuō)還是以

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

看完上述內(nèi)容,你們對(duì)HTML 5兼容IE的寫(xiě)法是怎樣的有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI