-1

我正在开发为在 IE7 上运行而构建的网页,现在我正在升级页面以默认在 IE11 Edge 模式下运行。

我在页面中所做的是我添加了

<!DOCTYPE html>

我还添加了这个

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <title>Test Image Request</title>
    <style type="text/css">
        .auto-expand{overflow-y:visible}
    </style>
</head>

现在,每当我打开页面时,IE11 开发人员模式下的仿真面板都会显示它在 IE7 中的渲染!

我错过了什么?

4

1 回答 1

0

解决了!<script>之前有<head>,之后移动它<head>,现在一切正常。

于 2015-03-02T19:13:26.683 回答