jQuery的CDN列表 - renfengmei/doc GitHub Wiki
使用CDN的好处很明显,就是速度快,比如Google提供的CDN,在全球有无数节点,比我们自己的服务器一般要快很多,另外用这些CDN我们就不用在保存一份文件了,还可以永远使用最新的版本。这里列举了几家稳定的,速度快的CDN供大家选择。
1. Google CDN
http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
Google Ajax CDN Documentation http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery https://developers.google.com/speed/libraries/?hl=zh-CN
2. Jquery.com CDN
http://code.jquery.com/jquery.min.js, 这个永远是最新版本的JQuery
JQuery.com CDN 文件列表,包括各个版本,JQuery UI等
3. Microsoft CDN
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.3.min.js http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js
Microsoft Ajax CDN Documentation http://weblogs.asp.net/scottgu/archive/2009/09/15/announcing-the-microsoft-ajax-cdn.aspx http://www.asp.net/ajaxlibrary/cdn.ashx 4. 新浪jquery cdn加速点 http://lib.sinaapp.com/js/jquery/1.7.2/jquery.min.js
你还可以这样写,第一个首选,如果加载失败js就会加载第二个地址
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> !window.jQuery && document.write('<script src=http://lib.sinaapp.com/js/jquery/1.7.2/jquery.min.js><\/script>'); </script>