删除ie8及更早版本的JS和CSS文件

remove JS and CSS file in ie8 and older

本文关键字:JS CSS 文件 版本 ie8 删除      更新时间:2023-09-26

我有这个<head>:

<head>
 <link rel='stylesheet' href='/animated/animate.css' type='text/css' media='all' />
 <script type='text/javascript' src='/animated/animated.js'></script>
</head>

,我需要在IE8及以下版本中禁用这两个文件。

有什么办法可以做到吗?

使用条件注释。在这种情况下,您可以使用-

<head>
    <!--[if gt IE 8]> <!-->
    <link rel='stylesheet' href='/animated/animate.css' type='text/css' media='all' />
    <script type='text/javascript' src='/animated/animated.js'></script>
    <!-- <![endif]-->
</head>

注意: gt表示大于,而gte表示大于或等于

在这里了解更多关于的条件注释