15

只是想知道是否有一个网站可以让您热链接到最新版本的 jquery。谷歌代码允许你,还是 jQuery.com 本身允许?

不是在寻找一个恰好有 jQuery 的网站,我可以捏一下。我想要一个网站说你可以热链接到他们的 jQuery。

4

6 回答 6

33

是的,它在 Google 的 CDN 上可用。

您需要的一切都在这里:http ://code.google.com/apis/libraries/

您可以直接链接到 javascript 文件:https ://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js

或使用google.load方法


更新

它也可用于Microsoft 的 CDNjQuery CDN

于 2009-09-05T14:30:43.840 回答
10

您可以使用 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 主机重定向到使用谷歌版本。

于 2009-09-05T15:11:01.673 回答
3

微软现在也托管 jQuery:http ://www.asp.net/ajax/cdn/#4

于 2009-10-13T07:14:03.233 回答
3

除了 JQuery,Google CDN 还托管 JQueryUI 和所有默认的 Themeroller CSS UI 主题(包括图像!)。如果您打算从 JQuery 构建一个 UI,那么这非常重要。

http://encosia.com/2009/10/11/do-you-know-about-this-undocumented-google-cdn-feature/

于 2010-06-18T20:27:30.790 回答
2

Google 为您托管 jquery。

http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery

于 2009-09-05T14:31:58.850 回答
2

jQuery 现在允许您使用他们的网站,正如他们的下载页面所建议的那样。

http://code.jquery.com/jquery-1.6.2.min.js

于 2011-08-04T00:22:27.397 回答