Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在设置了 doctype html5 的页面上仅为 IE8 以下的 IE 版本激活 quirks 模式?或者,是否可以在怪癖模式下解释一段代码?
似乎可以通过<!-- anything -->在文档类型(这会在 IE6-9 中触发 Quirks 模式)和<meta http-equiv="X-UA-Compatible"content="IE=Edge">(在 IE8-9 中优先于文档类型并触发标准模式)之前组合任何 HTML 注释 ( ) 来实现这一点。所以只有 IE6-7 会有 Quirks 模式,而 IE8+ 和所有非 IE 浏览器都会切换到标准模式。
<!-- anything -->
<meta http-equiv="X-UA-Compatible"content="IE=Edge">