条件注释
以前一直是把支持IE的CSS跟JS都与项目中的基本代码写在一起的,现在想想这确实不是个好方法,不但调试起来很不爽,而且维护起来也很麻烦。一直忘了条件注释这么个好东西,可以把支持IE的hack code单独写在一个文件里,用条件注释的方式引入。
示例如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<!--[if IE]> Internet Explorer <![endif]--> <!--[if IE 5]> Internet Explorer 5 <![endif]--> <!--[if IE 5.0]> Internet Explorer 5.0 <![endif]--> <!--[if IE 5.5]> Internet Explorer 5.5 <![endif]--> <!--[if IE 6]> Internet Explorer 6 <![endif]--> <!--[if IE 7]> Internet Explorer 7 <![endif]--> <!--[if gte IE 5]> Internet Explorer 5 and up <![endif]--> <!--[if lt IE 6]> Internet Explorer lower than 6 <![endif]--> <!--[if lte IE 5.5]> Internet Explorer lower or equal to 5.5 <![endif]--> <!--[if gt IE 6]> Internet Explorer greater than 6 <![endif]--> |
近期评论