用于检测IE6和IE7的HTML注释

时间:2010-02-09 01:12:39

标签: html templates internet-explorer-7 internet-explorer-6 conditional-comments

<!--[if IE 6]>
I am using IE6
<![endif]-->

有效。

如何“或” IE7?

3 个答案:

答案 0 :(得分:5)

如果您出于某种原因,只测试IE6或IE7的内容,并且可能在其他地方有IE5的其他条件,那么也支持其他运营商:

  <!--[if (IE 6)|(IE 7)]>
    This is IE 6 or IE 7!
  <![endif]-->

查看wikipedia article,其中包含比Quirksmode更好的文档。

答案 1 :(得分:4)

你可以做到

<!--[if lte IE 7]>
I am using IE less than or equal to version 7
<![endif]-->

请查看http://www.quirksmode.org/css/condcom.html#link3了解详细选项..

答案 2 :(得分:0)

同样的格式。只需更改ie版本。请参阅此处。 http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx