只是想知道是否有一个网站可以让您热链接到最新版本的 jquery。谷歌代码允许你,还是 jQuery.com 本身允许?
我不是在寻找一个恰好有 jQuery 的网站,我可以捏一下。我想要一个网站说你可以热链接到他们的 jQuery。
只是想知道是否有一个网站可以让您热链接到最新版本的 jquery。谷歌代码允许你,还是 jQuery.com 本身允许?
我不是在寻找一个恰好有 jQuery 的网站,我可以捏一下。我想要一个网站说你可以热链接到他们的 jQuery。
是的,它在 Google 的 CDN 上可用。
您需要的一切都在这里:http ://code.google.com/apis/libraries/
您可以直接链接到 javascript 文件:https ://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
或使用google.load
方法
更新
您可以使用 2 种方法中的 1 种让 google 托管它。
方法一
<script type="text/javascript"
src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
// You may specify partial version numbers, such as "1" or "1.3",
// with the same result. Doing so will automatically load the
// latest version matching that partial revision pattern
// (i.e. both 1 and 1.3 would load 1.3.2 today).
google.load("jquery", "1.3.2");
google.setOnLoadCallback(function() {
// Place init code here instead of $(document).ready()
});
</script>
方法2(更常见)
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
我知道 jquery.com 主机也是用户的文件,但他们可能已经将 jquery 主机重定向到使用谷歌版本。
微软现在也托管 jQuery:http ://www.asp.net/ajax/cdn/#4
除了 JQuery,Google CDN 还托管 JQueryUI 和所有默认的 Themeroller CSS UI 主题(包括图像!)。如果您打算从 JQuery 构建一个 UI,那么这非常重要。
http://encosia.com/2009/10/11/do-you-know-about-this-undocumented-google-cdn-feature/
Google 为您托管 jquery。
http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery
jQuery 现在允许您使用他们的网站,正如他们的下载页面所建议的那样。