简体   繁体   中英

How to prevent javascript library load for IE8

How to prevent the load of the D3 library for IE8 (and below) ?

<head>
    <script src="../lib/d3/d3.v2.min.js" type="text/javascript"></script>
</head>
<head>
    <!--[if !IE || gte IE 9]><!-->
        <script src="../lib/d3/d3.v2.min.js" type="text/javascript"></script>
    <!-- <![endif]-->
</head>
<!--[if gt IE 8]>
<script src="../lib/d3/d3.v2.min.js" type="text/javascript"></script>
<![endif]-->

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM