是什么 ? | : | 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 |
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>
step1、通过包管理器
安装jQuery
包管理器 | 安装命令 |
---|---|
bower | bower install jquery --save |
npm | npm install jquery --save |
yarn | yarn add jquery |
step2、在HTML代码中引入JavaScript
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
一般的语言中都是支持$
作为标识符中的第一个字符的,jQuery
干脆就只使用这一个字符作为变量名, 既符合JavaScript语言规范,书写也简单方便。
cssSelector
支持所有的CSS选择器。
示例:
var xx = $('#copyright');
var xx = $('#btn');
var xx = $('div');
var xx = $('.btn.btn-default');
var xx = $('input[checked]');
示例:
$(document).ready(function() {
//TODO
});