Google CDN托管jQuery和本地回退
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Google CDN托管jQuery和本地回退相关的知识,希望对你有一定的参考价值。
<!-- jQuery Google CDN hsoted with local fallback, weird doc.write slashes explained here http://www.codehouse.com/javascript/articles/external/ --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script> <script> if (typeof jQuery == 'undefined') { document.write('<script src="', 'js/jquery-1.4.1.min.js', '" type="text/JavaScript"></script>'); } </script>
以上是关于Google CDN托管jQuery和本地回退的主要内容,如果未能解决你的问题,请参考以下文章
从Google的CDN加载jQuery的正确方法,如果需要,可以使用回退到本地库
如何从 Zepto 回退到 Google CDN jQuery 到本地 jQuery?