这个问题必须重复,但我在这里找不到明确的答案。
如果浏览器是IE8或更低版本,如何告诉浏览器不加载脚本?
我知道定位IE9及以上版本:
<!--[if gte IE 8]>
According to the conditional comment this is IE 8 or higher<br />
<![endif]-->
但是脚本不会在非IE浏览器中加载。
如果不是IE,或者IE和IE8以上的话,我怎么说“加载脚本”?
答案 0 :(得分:21)
Conditional comment for 'Except 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]-->
应该有用吗?