国内公共cdn资源库
国内公共cdn资源库
- 新浪 http://lib.sinaapp.com/
- 微软 http://ajax.aspnetcdn.com/
- jQuery http://code.jquery.com/
- Staticfile https://www.staticfile.org/ (推荐)
- 百度 http://cdn.code.baidu.com/
当然,用别人的 CDN 都是不保险的,所以建议在 CDN 读取失败的时候从自己服务器提供:
<script src="//http://lib.sinaapp.com/js/jquery/1.7.2/jquery.min.js"></script>
<script>
if (!window.jQuery) {
var script = document.createElement('script');
script.src = "/js/jquery.min.js";
document.body.appendChild(script);
}
</script>