首页 > 技术文章 > HTML中条件注释的高级应用

qhca 2013-09-04 20:39 原文

在页面头部加入

<!--[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]-->

推荐阅读