美文网首页
jquery版本支持

jquery版本支持

作者: 极客_Ls | 来源:发表于2019-01-11 08:41 被阅读5次

    在使用jQuery的时候你应该要注意的是 jQuery 2版本以上是不支持 IE6,7,8 浏览器的。那么如果使用的是 IE6,7,8 浏览器的话,你就得选择使用jQuery1.9版本的,或者,你也可以通过条件注释在使用 IE6,7,8 浏览器的时候只允许包含 jQuery 1.9.

    注释代码如下:
    <!--[if lt IE 9]> 
    
        <script src="jquery-1.9.0.js"></script> 
    
    <![endif]--> 
    
    <!--[if gte IE 9]><!--> 
    
        <script src="jquery-2.0.0.js"></script> 
    
    <!--<![endif]-->
    

    替代jquery库

    如果您希望将 jQuery 库存放在您的计算机上,那么根据 Google 和 Microsoft 对 jQuery 友好性,您可以从 Google 或 Microsoft 加载 CDN jQuery 核心文件。

    使用 Google 的 CDN

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs
    /jquery/1.4.0/jquery.min.js"></script>
    

    使用 Microsoft 的 CDN

    <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery
    /jquery-1.4.min.js"></script>
    

    相关文章

      网友评论

          本文标题:jquery版本支持

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