从Google的CDN加载jQuery的正确方法,如果需要,可以使用回退到本地库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从Google的CDN加载jQuery的正确方法,如果需要,可以使用回退到本地库相关的知识,希望对你有一定的参考价值。

Proper way of loading libs such as jQuery from Google's CDN. Place these javascripts at the bottom for fast page loading. To target different versions, you can be more specific if you want; eg. /1.4/ or even /1.4.4/.

(NOTE: you may either use http:// or https:// depending on your needs. Both will work.)
  1. <!-- Load jQuery from Google's CDN -->
  2. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
  3. <!-- Fall back to local lib if loading from Google's CDN fails -->
  4. <script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.4.4.js"%3E%3C/script%3E'))</script>

以上是关于从Google的CDN加载jQuery的正确方法,如果需要,可以使用回退到本地库的主要内容,如果未能解决你的问题,请参考以下文章

HTML 从Google CDN加载jQuery和jQuery UI

从Google CDN加载jQuery&jqueryui

从Google的CDN服务器加载jQuery和jQueryUI的最新版本

JavaScript 从Google的CDN服务器加载最新版本的jQuery和jQueryUI

JavaScript 从Google CDN加载jQuery,但如果失败则回退到本地

Google CDN jQuery加载回退