我知道要针对 IE8+,您应该使用:
<!--[if gte IE 8]>
According to the conditional comment this is IE 8 or higher<br />
<![endif]-->
对于定位非 IE 浏览器,您可以使用:
<!--[if !IE]> -->
According to the conditional comment this is not IE<br />
<!-- <![endif]-->
您还可以组合这样的条件:
[if (IE 6)|(IE 7)]
但我的问题是,现在我想针对 IE8+ 或非 IE 浏览器,我尝试像这样针对它们:
<!--[if (!IE)|(gte IE 8)]> -->
This should be non IE or IE8+ browsers
<!-- <![endif]-->
这似乎适用于非 ie 浏览器,但添加-->
到 IE。
我猜这与下层显示的评论类型和下层隐藏的评论类型有关,但我不确定如何处理它们。