jQuery IE兼容

作者: SailingBytes | 来源:发表于2018-05-22 09:54 被阅读0次

    jQuery 版本 2 以上不支持 IE6,7,8 浏览器。

    如果需要支持 IE6/7/8,那么请选择1.9

    你还可以通过条件注释在使用 IE6/7/8 时只包含进1.9。

    <!--[if lt IE 9]>

        <script src="jquery-1.9.0.js"></script>

    <![endif]-->

    <!--[if gte IE9]><!-->

        <script src="jquery-2.0.0.js"></script>

    <!--<![endif]-->

    相关文章

      网友评论

        本文标题:jQuery IE兼容

        本文链接:https://www.haomeiwen.com/subject/rathjftx.html