jQuery
1.0、参考
1.1、jQuery简介
是什么 ?:a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.
Slogan:Write Less, Do More
开发语言:JavaScript
官方主页:http://jquery.com
源码仓库:https://github.com/jquery/jquery
1.2、通过开源CDN引入jQuery

jsDelivr⤵︎

<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.0/dist/jquery.min.js"></script>

BootCDN⤵︎

<script src="https://cdn.bootcss.com/jquery/1.9.1/jquery.min.js"></script>
1.3、通过下载到本地引入jQuery

step1、通过包管理器安装jQuery

包管理器安装命令
bowerbower install jquery --save
npmnpm install jquery --save
yarnyarn add jquery

step2、在HTML代码中引入JavaScript

<script src="/bower_components/jquery/dist/jquery.min.js"></script>
1.4、var x = $(String cssSelector)

一般的语言中都是支持$作为标识符中的第一个字符的,jQuery干脆就只使用这一个字符作为变量名, 既符合JavaScript语言规范,书写也简单方便。

cssSelector支持所有的CSS选择器。

示例:

var xx = $('#copyright');
var xx = $('#btn');
var xx = $('div');
var xx = $('.btn.btn-default');
var xx = $('input[checked]');
1.5、var x = $(Element element)

示例:

$(document).ready(function() {
    //TODO
});
1.6、jQuery相关操作
1.7、jQuery插件