标签:style blog color sp div c log 代码 html
第一个想到的是IE的条件注释,如下:用于html页面
<!--[if lte IE 8]> js代码 <![endif]-->
但是,IE10+浏览器已经跟条件注释say googbye了!因此,例如我的IE11浏览器的IE7, IE8兼容模式下,条件注释直接被吊死,没气了!
于是,为了更广泛的适用性,可以试试下面这个方法:
if (!document.addEventListener) { // IE6~IE8 js代码 }
标签:style blog color sp div c log 代码 html
原文地址:http://www.cnblogs.com/snowbaby-kang/p/4000253.html