2

这似乎是一个愚蠢的问题,但我很难过。

我正在使用 if IE 条件语句来修复 IE6 中的一些问题。

在头上,我有

<!--[if lt IE 7] > <script type="text/javascript" src="js/ie6.js"></script> < ![endif]-->

在 ie6.js 文件中,我有一个简单的警报,当我将它从条件注释中取出时它会起作用。但在 IE 中,警报不显示。我在 Parallels Desktop 的 Windows XP 上测试 IE 6.0.2900。

4

1 回答 1

7

尝试在标签中不带空格:

<!--[if lt IE 7]>
According to the conditional comment this is Internet Explorer lower than 7
<![endif]-->
于 2010-08-26T14:23:39.037 回答