Why does IE9 opens in Document Mode as IE7 standards?

前端 未结 7 1739
一向
一向 2020-12-12 14:25

When I open a webpage in IE9 with DOCTYPE as


It opens Document Mode as IE7 standards.

I need default IE9 stan

相关标签:
7条回答
  • 2020-12-12 15:02

    You can set this in the web.config as well.

    <system.webServer>
        <httpProtocol>
            <customHeaders>
                <clear />
                <add name="X-UA-Compatible" value="IE=edge" />
            </customHeaders>
        </httpProtocol>
    
    0 讨论(0)
提交回复
热议问题