Questions tagged «conditional-comments»

25
在某些情况下,例如特定于Internet Explorer的CSS或特定于Internet Explorer的JavaScript代码,如何仅将Internet Explorer 10定位?
在某些情况下,例如特定于Internet Explorer的CSS或特定于Internet Explorer的JavaScript代码,如何仅将Internet Explorer 10定位? 我试过了,但是不起作用: <!--[if IE 10]> <html class="no-js ie10" lang="en"> <![endif]--> <!--[if !IE]><!--> <html lang="en" class="no-js"> <!--<![endif]--> Internet Explorer 10忽略条件注释,并使用<html lang="en" class="no-js">代替<html class="no-js ie10" lang="en">。

16
<!-[如果!IE]>不起作用
我遇到困难 &lt;!--[if !IE]&gt; 上班。我想知道是否是因为我的文件中有这个 &lt;!doctype html&gt; &lt;!--[if lt IE 7]&gt; &lt;html class="ie6 oldie"&gt; &lt;![endif]--&gt; &lt;!--[if IE 7]&gt; &lt;html class="ie7 oldie"&gt; &lt;![endif]--&gt; &lt;!--[if IE 8]&gt; &lt;html class="ie8 oldie"&gt; &lt;![endif]--&gt; &lt;!--[if gt IE 8]&gt;&lt;!--&gt; &lt;html class=""&gt; &lt;!--&lt;![endif]--&gt; 当我添加 &lt;!--[if !IE]&gt;&lt;!--&gt; &lt;link type="text/css" rel="stylesheet" href="/stylesheets/no-ie.css" /&gt; &lt;!--&lt;![endif]--&gt; 出于某种原因无法连接到我的标头。但是,如果我添加 &lt;!--[if !IE]&gt;&lt;!--&gt; &lt;style&gt; All my …

8
为什么即使在模拟Internet Explorer 8文档模式时,Internet Explorer 11也不接受条件注释?
我正在使用新的Internet Explorer 11开发人员工具将文档模式切换为“ 8”,但是条件注释仍然被忽略,也就是说,它们没有被正确地解析并且表现得像普通注释一样。因此,浏览器不会请求/加载条件注释中的任何引用文件。 为什么会这样?是虫子吗? 如果您认为这确实是一个需要修复的错误,请进入并说您也可以在针对此问题而报告的Microsoft错误报告中重现此错误: 通过F12 Developer模拟文档模式时,条件注释不起作用工具。 更新:已报告该问题在提到的错误报告中已得到解决。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.