如何从CDN加载jQuery?
Posted 池鱼i_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从CDN加载jQuery?相关的知识,希望对你有一定的参考价值。
下面是从所有3个CDN加载jQuery的代码。
从Google CDN加载jQuery Framework的代码
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
从Microsoft CDN加载jQuery Framework的代码
<script type="text/javascript"
src="http://ajax.microsoft.com/ajax/jquery/jquery-1.9.1.min.js">
</script>
从jQuery站点加载jQuery Framework的代码(EdgeCast CDN)
<script type="text/javascript"
src="http://code.jquery.com/jquery-1.9.1.min.js">
</script>
以上是关于如何从CDN加载jQuery?的主要内容,如果未能解决你的问题,请参考以下文章
HTML 从Google CDN加载jQuery和jQuery UI
在 CDN 被阻止/不可用的情况下,如何加载本地脚本文件作为后备? [复制]