就是在每个浏览器中上边两个中只能使用一个的话一定得记得把IE9考虑进来,因为它也是能识别条件注释的(感觉IE9就是IE向现代高级浏览器过渡的东西,CSS3只支持一部分,但是之前IE专有的一些问题照样存在)
<!--[if IE]> html语句 <![endif]-->
<!--[if IE]> html代码 <![endif]-->
<!--[if !IE]> html代码 <![endif]-->
<!--[if IE 6]> html代码 <![endif]-->
<!--[if IE 8]> html代码 <![endif]-->
<!-- IE8以下版本的浏览器才会执行内部的html代码,如需要包含IE8则使用lte -->
<!--[if lt IE 8]> html代码 <![endif]-->
<!-- IE7以上版本的浏览器才会执行内部的html代码,如需要包含IE7则使用gte -->
<!--[if gt IE 7]> html代码 <![endif]-->
<!--[if IE]> 条件注释前缀
html代码 代码
<![endif]--> 条件注释后缀
<!-- 普通注释前缀
[if IE] html代码<![endif] 字符串
--> 普通注释后缀
<!--[if !IE]>--> html代码 <!--<![endif]-->
<!--[if !IE]>-->
<script src="js/jquery-3.2.1.min.js"></script>
<!--<![endif]-->
<!--[if IE]>
<script src="js/jquery-1.12.4.min.js"></script>
<![endif]-->