参考往常css/js的浏览器选择加载 <!--[if lte IE 8]> <link rel="stylesheet" href="IEBrower.css"> <![endif]--> <!--[if gt IE 8]><!--> <link rel="stylesheet" href="otherBrower.css"> <!--<![endif]--> <!--[if lte IE 8]> <script src="IEBrower.js"></script> <![endif]--> <!--[if gt IE 8]><!--> <script src="otherBrower.js"></script> <!--<![endif]--> 于是写了这个(IE对png图片的支持不友好) <!--[if lte IE 8]> <img src="Logo.jpg" class="logo"/> <![endif]--> <!--[if gt IE 8]><!--> <img src="Logo.png" class="logo"/> <!--<![endif]-->