答案 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链接以获取更多信息。