2021-10-24

十二. jQuery

  1. javaScript和jQuery库,里面存在大量的javascript函数

     2.获取jQuery

  • Download the compressed production jQuery 3.4.1
  • Download the uncompressed development jQuery 3.4.1
  • 搜索CDN jQuery直接引入<script src=’’></script>

     3.公式:$(selector/选择器).action()

     4.选择器

  • $(‘p’).click();                         标签选择器
  • $(‘#id’).click();                      id选择器
  • $(‘.class’).click();                   class选择器

文档工具站:jQuery API 中文文档 | jQuery API 中文在线手册 | jquery api 下载 | jquery api chm

      5.事件

  •  鼠标、键盘、其他时件
  • $(document).ready(function()){}=$(function()){}

6.操作DOM

(1)节点文本操作

  • $(‘#text-ul li[name=python]’).text();           //获得值
  • $(‘#text-ul li[name=python]’).text(‘设置值’);             //设置值
  • $(‘#text-ul’).html();                                   //获得值
  • $(‘#text-ul’).html(‘<strong>123</strong>’);            //设置值

(2)css操作

  • $(‘#text-ul li[name=python]’).css({“color”,”red”})

上一篇:Svelte 中的事件修饰符


下一篇:九,微信小程序开发浅谈