4

这个问题一定是重复的,但我在这里找不到明确的答案。

如果浏览器是 IE8 或更低版本,我如何告诉浏览器不要加载脚本?

我知道针对 IE9 及更高版本:

<!--[if gte IE 8]>
 According to the conditional comment this is IE 8 or higher<br />
<![endif]-->

但随后脚本不会在非 IE 浏览器中加载。

我怎么说“如果不是 IE,或者如果 IE 且大于 IE8,则加载脚本”?

4

1 回答 1

22

“IE8 除外”的条件注释?

<!--[if gte IE 9]><!-->
    // Your script here. This will only be loaded if IE version is greater than 8, OR any other browser.
<!--<![endif]-->

应该管用?

于 2013-06-17T14:21:41.313 回答