很多人都做了ie7 ie6 ff的兼容那么ie8怎么兼容呢其实很简单 只需要把以下这个标签加入到网站头部的<head></heda>之间 那么ie8就会兼容你的网站了 这其实是一个模仿ie7的滤镜大家可以试试看 前提是你的网站要在ie7下面没有问题
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
还有一种方法是针对整个网站的,在IIS中加入如下描述符就可以有相同的效果,当然这么做范围更广.
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.webServer> <httpProtocol> <customHeaders> <add name="X-UA-Compatible" value="IE=EmulateIE7"> </customHeaders> </httpProtocol> </system.webServer> </configuration>
|