如何在lt IE 9中加载javascript代码

时间:2014-03-11 20:26:30

标签: javascript internet-explorer conditional-comments

我在项目中使用javascript代码,我不想在lt IE 9中加载此代码。我使用此代码但它不起作用:

<!--[if lt IE 9]>
<script type="text/javascript">
....
</script>
<![endif]-->

3 个答案:

答案 0 :(得分:1)

<!--[if !lt IE 9]>-->
...
<!--<![endif]-->

您可以访问此microsoft article以了解如何构建更复杂的条件评论

答案 1 :(得分:0)

试试这个:

<!--[if gte IE 9]>-->
...
<!--<![endif]-->

答案 2 :(得分:0)

<!-- Target IE 8 and lower -->
<!--[if lt IE 9]>
    <script type="text/javascript">alert('hello world');</script>
<![endif]-->

所以也许试一试:

<!-- Target IE 9 and lower -->
<!--[if lt IE 10]>
    <script type="text/javascript">alert('hello world');</script>
<![endif]-->