网站在ie8上自动进入ie7模式

时间:2014-04-10 05:54:03

标签: internet-explorer internet-explorer-8 internet-explorer-7 ie8-compatibility-mode

我在ie8上的prod网站上有一个严重的问题。

www.everydayme.ru

在ie8上,网站进入ie7模式,布局中断

任何人都可以发现可能导致此问题的原因

由于

1 个答案:

答案 0 :(得分:0)

请尝试使用以下代码段。 (请确保在标记后添加了此mata标记。)

<head>
<meta http-equiv="x-ua-compatible" content="IE=8" > 
.........
.........
</head>
//OR
<head>
<meta http-equiv="X-UA-Compatible" content="EmulateIE8" /> 
.........
.........
</head>
//OR
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
.........
.........
</head>

的web.config

<system.webServer>
    <httpProtocol>
      <customHeaders>
        <add name="X-UA-Compatible" value="IE=edge" />
      </customHeaders>
    </httpProtocol>
</system.webServer>

请查看this链接以获取更多信息。