除了IE 9之外的一切目标

时间:2014-06-19 15:04:05

标签: html internet-explorer internet-explorer-9 conditional-comments

有没有办法阻止IE 9加载样式表或脚本?

我刚刚找到了一种方法来阻止所有IE版本做某事而不是某个版本:

<!--[if !IE]><!-->
    <link rel="stylesheet" href="not-ie.css" />
    <script src="not-ie.js"></script>
<!--<![endif]-->

1 个答案:

答案 0 :(得分:2)

当然,只需指定版本:

<!--[if !(IE 9)]><!-->
    <link rel="stylesheet" href="not-ie-9.css" />
    <script src="not-ie-9.js"></script>
<!--<![endif]-->

请注意,您目前所拥有的内容将导致IE10以及稍后像其他浏览器一样加载您的资源,因为那些较新的版本不会处理条件注释。