我在<script>标记中使用以下jQuery链接:
http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
是否有指向“最新”版本的链接?类似以下内容(不起作用):
http://ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js
(显然,将代码链接到可能变化的库并不一定是一个好计划,但在开发中很有用。)
我在<script>标记中使用以下jQuery链接:
http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
是否有指向“最新”版本的链接?类似以下内容(不起作用):
http://ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js
(显然,将代码链接到可能变化的库并不一定是一个好计划,但在开发中很有用。)
当前回答
是的。
http://code.jquery.com/jquery-latest.min.js
其他回答
在jQuery 1.11.1之前,您可以使用以下URL获取jQuery的最新版本:
https://code.jquery.com/jquery-latest.min.js-jQuery托管(缩小)https://code.jquery.com/jquery-latest.js-jQuery托管(未压缩)https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js-谷歌托管(缩小)https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js-谷歌托管(未压缩)
例如:
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
然而,自jQuery1.11.1以来,jQuery和Google都停止更新这些URL;它们将永远固定在1.11.1。没有可使用的受支持的替代URL。有关为什么会出现这种情况的解释,请参阅本博客文章;不要使用jquery-latest.js。
两个主机都支持https和http,因此可以根据需要更改协议(或使用协议相关URI)
另请参见:https://developers.google.com/speed/libraries/devguide
jQuery也不允许您通过SSL调用他们的最新文件,如果您想在购物车等中使用jQuery,这是一个考虑因素。
e.g.
<script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>
会给你一个安全错误。
Google的API将允许您通过SSL调用:
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.7");
</script>
不要使用jquery-latest.js
此文件不再更新(它将永远在v1.11.1上)。此外,它的缓存寿命非常短(消除了使用CDN的好处),因此最好选择jQuery的版本。
jQuery博客的更多详情:http://blog.jquery.com/2014/07/03/dont-use-jquery-latest-js/
是的。
http://code.jquery.com/jquery-latest.min.js
Use:
<script type="text/javascript" src="//www.google.com/jsapi"></script>
<script type="text/javascript">
//<![CDATA[
google.load("jquery", "1");
//google.load("jqueryui", "1");
//google.load("swfobject", "1");
//]]>
</script>
注意:上面的代码段将坚持1.7.1或1.11.1。
我的建议是对CDN jQuery版本进行硬编码:<script src=“//ajax.googleapis.com/ajax/libs/jQuery/2.1.4/jQuery.min.js”></script>
您可以在此处找到Google CDN的最新库:https://developers.google.com/speed/libraries/
或者使用jQuery CDN:https://code.jquery.com/