是否有指向Google API上“最新”jQuery库的链接?

这个问题在这里已经有了答案:

  • Google CDN 5上最新的jQuery版本的答案

  • 直到jQuery 1.11.1 ,您可以使用以下URL来获取最新版本的jQuery:

  • http://code.jquery.com/jquery-latest.min.js - jQuery托管(缩小)
  • http://code.jquery.com/jquery-latest.js - jQuery托管(未压缩)
  • http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js - Google代管(缩小)
  • http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js - Google托管(未压缩)
  • 例如:

    <script src="http://code.jquery.com/jquery-latest.min.js"
            type="text/javascript"></script>
    

    但是,既然jQuery 1.11.1,jQuery和Google都停止更新这些URL; 他们将永远固定在1.11.1。 没有支持的替代URL可供使用。 有关这种情况的解释,请参阅此博客帖子; 不要使用jquery-latest.js。

    两台主机都支持https以及http ,因此请根据需要更改协议(或使用协议相关的URI)

    另请参阅:https://developers.google.com/speed/libraries/devguide


    不要使用这个答案。 该URL指向jQuery 1.11(并且总是会)。

    以上代码片段的基本信用

    http://code.jquery.com/jquery-latest.min.js是缩小版,始终保持最新状态。


    请注意,当您使用谷歌的“直接”与“最新”链接时,缓存标题会有所不同。

    使用http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js时

    Cache-Control: public, max-age=31536000
    

    使用http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js时

    Cache-Control: public, max-age=3600, must-revalidate, proxy-revalidate
    
    链接地址: http://www.djcxy.com/p/16181.html

    上一篇: Is there a link to the "latest" jQuery library on Google APIs?

    下一篇: How do you launch the JavaScript debugger in Google Chrome?