if IE> = 9或不是IE的条件指令

时间:2014-06-16 11:10:35

标签: javascript jquery html internet-explorer

我正在开始一个新项目,遗憾的是我必须支持IE7& IE9。最终我将能够删除IE7支持,但希望能够顺利地删除它。

基本上,在可能的情况下,我希望使用最新版本的库。

<!--[if lt IE 9]>
    <script src="https://raw.githubusercontent.com/aFarkas/html5shiv/master/dist/html5shiv.min.js"></script>
    <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<![endif]-->
<!--[if gte IE 9]>
    <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<![endif]-->
<!--[if !IE]><!-->
    <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 8]>
    <script src="http://cdnjs.cloudflare.com/ajax/libs/json3/3.3.1/json3.min.js"></script>
<![endif]-->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.17/angular.min.js"></script>
<!--[if lt IE 9]>
    <script src="local/angularjs-attribute-polyfill.js"></script>
<![endif]-->

正如你所看到的,我有两次JQuery库,一次是gte IE9,一次是因为IE不等于其他浏览器......有没有一种很好的方法来整合这些?

1 个答案:

答案 0 :(得分:1)

您可以使用

<!--[if gte IE 9]><!-->
    <script src="...jquery-2.1.1.min.js"></script>
<!--<![endif]-->

如果使用IE9或更高版本,此条件注释将允许包含脚本...并且非IE浏览器无论如何都将忽略该注释并且只包括脚本,不会问任何问题。