針對單個頁面-Web頁面中添加設置
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
IE=edge,chrome=1的META信息詳解
在 IIS 上實現 META 切換,針對所有頁面
<?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>