HTML 正确的方法从谷歌的CDN加载jQuery,必要时回退到本地库

Posted

tags:

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

<!-- Load jQuery from Google's CDN -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
<!-- Fall back to local lib if loading from Google's CDN fails -->
<script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.4.4.js"%3E%3C/script%3E'))</script>

从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>

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

从谷歌或微软引用 jQuery可以提高加载速度。

如何从谷歌的材料设计图标外观中删除间距?

403 Forbidden - 从谷歌的图片搜索中获取网址

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

如何使用来自谷歌的外部托管 jquery 覆盖核心 jquery 文件

HTML 谷歌CDN jQuery本地版后备