2

所以我看到了一些很奇怪的东西。我正在运行 Windows 8.1/IE11,不确定这是否重要。

我插入了以下 html 注释。一个是直接从 HTML5 样板中提取的,所以我确信至少是正确的。

当我打开开发工具时,我可以在 IE11 中看到 DOM 中的注释,并在 IE10 中使用模拟器。只要我在模拟器中使用文档模式和用户字符串进入 IE9 或更低版本。您在下面看到的所有有条件的 IE HTML 注释以及只有有条件的 IE 注释由于某种原因无处可见。

有没有人见过这样的东西?有任何线索为什么会发生吗?我已经彻底搜索无济于事。

    <!DOCTYPE html>
<html>
<head>
<title>@ViewBag.PlatformModel.PlatformTitle </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="~/Scripts/html5shiv.js"></script>
<!--[if lt IE 8]>
        <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
    <![endif]-->

<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="~/content/platform/css/ie78.css"/><![endif]-->
<!--[if lt IE 9]>@Styles.Render("~/Content/platform/css/IE78.css")<![endif]-->

<!--// kendo common, kendo theme-->
@Styles.Render("~/Content/kendo-common-styles")
@Styles.Render("~/Content/kendo-theme-styles")

<!--// platform -->
@Styles.Render("~/Content/platform-styles")

<!--// page styles -->
@RenderSection("styles", required: false)

</head>
<body>
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
    <![endif]-->
4

1 回答 1

0

您可能想要更新 Windows 并安装最新的补丁。RTM 的 IE11 中的 F12 工具带有一个错误*,其中模拟文档模式不尊重条件注释。这已经被修复了。

* http://connect.microsoft.com/IE/feedback/details/806767/conditional-comments-do-not-work-when-emulating-document-modes-via-f12-developer-tools

于 2014-07-10T20:09:23.463 回答