设置IE浏览器文档模式

2014-05-13· 5871 次浏览
## 方法 通过在在head中设置mate,可以使IE浏览器通过指定的文档模式解析代码 ### Edge ```html <meta http-equiv="X-UA-Compatible" content="IE=edge" /> ``` ### IE8 ```html <meta http-equiv="X-UA-Compatible" content="IE=8" /> ```