i use javascript code in project and i want not load this code in lt IE 9. i use this code but its not working:

<!--[if lt IE 9]>
<script type="text/javascript">
....
</script>
<![endif]-->
有帮助吗?

解决方案

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

You can visit this microsoft article to learn how to build more complex conditional comments

其他提示

try this:

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

So perhaps give this a try:

<!-- Target IE 9 and lower -->
<!--[if lt IE 10]>
    <script type="text/javascript">alert('hello world');</script>
<![endif]-->
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top