前端静态资源公共库CDN

ⅰ亾dé卋堺 提交于 2020-01-11 16:50:47

1. Staticfile CDN

http://www.staticfile.org/

2. BootCDN

https://www.bootcdn.cn/

3. UNPKG

https://unpkg.com/

4. cdnjs

https://cdnjs.com/

5. jsDelivr

https://www.jsdelivr.com/

6. CDNJS.NET

https://cdnjs.net/

7. jQuery CDN

http://code.jquery.com/

8. Microsoft Ajax CDN

https://docs.microsoft.com/en-us/aspnet/ajax/cdn/overview

9. 360 前端静态资源库

https://cdn.baomitu.com/

10. 百度静态资源公共库

http://cdn.code.baidu.com/
以上地址无法访问,用以下域名访问对应的库
github地址:https://github.com/Clouda-team/baiducdnstatic
http://libs.baidu.com/jquery/1.9.0/jquery.js

11. 今日头条静态资源公共库

http://cdn.bytedance.com/

12. 又拍云JS库

http://jscdn.upai.com/

13. 腾讯网静态资源公共库

https://libs.qq.com/

14. 新浪云计算公共库

http://lib.sinaapp.com/

加载失败切换本地js库方法

<script src="//cdn.staticfile.org/jquery/1.8.3/jquery.min.js"></script>
<script>
   if (!window.jQuery) {
    var script = document.createElement('script');
    script.src = "/js/jquery.min.js";
    document.body.appendChild(script);
    }
</script>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!