سؤال

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