标签:
分享几个jquery的几个国内国外的CDN加速节点,方便广大的开发设计者调用和节约空间,官网的总是最新版本的jquery所以不用去担心版本更新问题,其他加速节点可能不会在更新版本,所以取舍问题自己决定。
http://code.jquery.com/jquery-1.11.1.min.js
http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js
http://lib.sinaapp.com/js/jquery/1.7.2/jquery.min.js
你还可以这样写,第一个首选,如果加载失败js就会加载第二个地址
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> !window.jQuery && document.write(‘<script src=http://lib.sinaapp.com/js/jquery/1.7.2/jquery.min.js><\/script>‘); </script>
原文链接:http://www.uedsc.com/jquery-cdn.html
标签:
原文地址:http://www.cnblogs.com/sakura-panda/p/4961927.html