可以在网页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>