1. 程式人生 > >HTML Meta中新增X-UA-Compatible和IE=Edge,chrome=1有什麼作用

HTML Meta中新增X-UA-Compatible和IE=Edge,chrome=1有什麼作用

公司在做文件預覽時經常遇到IE的相容性問題,這時就需要在meta標籤中加入一句話,強制IE的相容性版本

原文來自:https://zhidao.baidu.com/question/264134661794412085.html

這是一個,文件相容模式的定義。
Edge 模式告訴 IE 以最高階模式渲染文件,也就是任何 IE 版本都以當前版本所支援的最高階標準模式渲染,避免版本升級造成的影響。簡單的說,就是什麼版本 IE 就用什麼版本的標準模式渲染

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

使用以下程式碼強制 IE 使用 Chrome Frame 渲染

<meta http-equiv="X-UA-Compatible" content="chrome=1">

提示 IE 使用者安裝 Google Frame
Google 官方提供了對 Google Frame 外掛安裝情況的檢測,這裡直接呼叫方法即可,如果檢測到 IE 並未安裝 Google Frame,則彈出對話方塊提示安裝。

<script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script><script>CFInstall.check();
</script>

最佳的相容模式方案,結合考慮以上兩種:

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">