guojieying

一、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>

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-07-22
  • 2022-01-28
  • 2021-10-31
  • 2021-10-16
  • 2022-02-28
  • 2021-11-13
猜你喜欢
  • 2021-05-30
  • 2021-11-07
  • 2021-11-09
  • 2021-08-27
  • 2021-11-07
  • 2021-10-16
  • 2022-02-18
相关资源
相似解决方案