我有像下面这样的 html,当我试图在 IE9 中浏览它时,在你将鼠标悬停在 div 上之前什么都不会出现。如果我将“X-UA-Compatible”更改为“IE=8”,它就会出现。非常感谢您的建议。
<head>
<meta http-equiv="X-UA-Compatible" content="IE=7" />
</head>
<body>
<table>
<tr>
<td>
<div style="height:400px; width:400px">
<OBJECT ID="Player" HEIGHT="100%" WIDTH="100%" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
</OBJECT>
</div>
</td>
</tr>
</table>
</body>
</html>