HTML中条件注释的高级应用

在页面头部加入

<!--[if lt IE 9]><html class="ie"><![endif]-->

可简单CSS Hack,IE6、IE7、IE8

jQuery兼容代码

<!--[if lt IE 9]><script src="jquery-1.10.2.js"></script><![endif]-->
<!--[if gte IE 9]><!--><script src="jquery-2.0.3.js"></script><!--<![endif]-->

原文地址:https://www.cnblogs.com/qhca/p/3301944.html