HTML 正确的方法从谷歌的CDN加载jQuery,必要时回退到本地库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML 正确的方法从谷歌的CDN加载jQuery,必要时回退到本地库相关的知识,希望对你有一定的参考价值。
从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.)
<!-- Load jQuery from Google's CDN --> <!-- 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>
以上是关于HTML 正确的方法从谷歌的CDN加载jQuery,必要时回退到本地库的主要内容,如果未能解决你的问题,请参考以下文章
从Google的CDN加载jQuery的正确方法,如果需要,可以使用回退到本地库