关于IE兼容性的问题(X-UA-Compatible)

可以在网页Head头中加入:

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

这会告诉IE8以IE7的方式显示网页。

或者在web.config中加入:

<?xml version="1.0" encoding="utf-8"?>

<configuration>

         <system.webServer>

              <httpProtocol>

                  <customHeaders>

                          <clear />

                          <add name="X-UA-Compatible" value="IE=EmulateIE7" />

                 </customHeaders>

           </httpProtocol>

      </system.webServer>

</configuration>

posted @ 2010-04-12 09:27  溪水云天  阅读(263)  评论(0编辑  收藏  举报