这似乎是一个愚蠢的问题,但我很难过。
我正在使用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。
答案 0 :(得分:7)
尝试在标签中没有空格:
<!--[if lt IE 7]>
According to the conditional comment this is Internet Explorer lower than 7
<![endif]-->