jQuery下载及应用

一、jQuery下载及应用

jQuery相关网站

官网 https://jquery.com/
文档API: http://jquery.cuishifeng.cn/index.html
#直接打开复制粘贴到自己创建的.js / .min.js文件下
BootCDN jQuery各个版本地址: https://www.bootcdn.cn/jquery/

#方式一:本地引入
<script src="jquery-3.5.1.min.js"></script>
<script>
    //注意,一定在引入jQuery之后,再使用jQuery提供的各种操作
</script>

#方式二:直接使用CDN
<script src="https://cdn.bootcss.com/jquery/3.5.1/jquery.js"></script>
<script>
    code...
</script>
原文地址:https://www.cnblogs.com/guojieying/p/13726680.html