“Except IE8”的条件注释? [英] Conditional comment for 'Except IE8'?

查看:119
本文介绍了“Except IE8”的条件注释?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用<! - [if IE 8]><![endif] - > 来指定IE8,我想为所有浏览器加载EXCEPT IE8,我应该使用什么条件注释?

I'm using <!--[if IE 8]><![endif]--> for targeting IE8, but there's some JS that I want to load for all browsers EXCEPT IE8, what conditional comment should I use?

编辑:我想知道这是否可以工作: ! - [if lte IE 8]><![endif] - >

I wonder if this would work: <!--[if lte IE 8]><![endif]-->

谢谢

推荐答案

我可以想到一个诡计。在IE条件标签中设置一个变量,如果未设置该变量,则包含您的JS代码。

I can think of a trick. Set a variable inside the IE conditional tag and include your JS code if that variable isn't set.

<script>
    var ie8 = false;
</script>

<!--[if IE 8]>
    <script>
        ie8 = true;
    </script>
<![endif]-->

<script>
    if (ie8 == false) {
        // any code here will not be executed by IE 8
        alert("Not IE 8!");
    }
</script>

这篇关于“Except IE8”的条件注释?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆