From 0ce3d1c1ab83b8b235d39f0f0fe223156a1213ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E4=B8=96=E6=B6=9B?= <2124876211@qq.com> Date: Thu, 1 Dec 2022 13:17:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9E=97=E4=B8=96=E6=B6=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2022.11.30\344\275\234\344\270\232.html" | 223 ++++++++++++++++++ .../2022.12.1\347\254\224\350\256\260.md" | 77 ++++++ 2 files changed, 300 insertions(+) create mode 100644 "23\346\236\227\344\270\226\346\266\233/\344\275\234\344\270\232/2022.11.30\344\275\234\344\270\232.html" create mode 100644 "23\346\236\227\344\270\226\346\266\233/\347\254\224\350\256\260/2022.12.1\347\254\224\350\256\260.md" diff --git "a/23\346\236\227\344\270\226\346\266\233/\344\275\234\344\270\232/2022.11.30\344\275\234\344\270\232.html" "b/23\346\236\227\344\270\226\346\266\233/\344\275\234\344\270\232/2022.11.30\344\275\234\344\270\232.html" new file mode 100644 index 0000000..a62c439 --- /dev/null +++ "b/23\346\236\227\344\270\226\346\266\233/\344\275\234\344\270\232/2022.11.30\344\275\234\344\270\232.html" @@ -0,0 +1,223 @@ + + + + + 注册表单验证 + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
用户注册
用户名: + +
密码: + +
密码确认: + +
性别: + 男 + 女 + +
专业: + + +
爱好: + 抽烟 + 喝酒 + 打游戏 + 烫头发 + 足球 + 篮球 + +
自我介绍: + +
  + + +
+ +
+ + + \ No newline at end of file diff --git "a/23\346\236\227\344\270\226\346\266\233/\347\254\224\350\256\260/2022.12.1\347\254\224\350\256\260.md" "b/23\346\236\227\344\270\226\346\266\233/\347\254\224\350\256\260/2022.12.1\347\254\224\350\256\260.md" new file mode 100644 index 0000000..db4efa3 --- /dev/null +++ "b/23\346\236\227\344\270\226\346\266\233/\347\254\224\350\256\260/2022.12.1\347\254\224\350\256\260.md" @@ -0,0 +1,77 @@ + 16、jQuery + +jQuery 是一个 JavaScript 库。 + +## jQuery 选择器 + +| $("*") | 选取所有元素 | +| ------------------------ | --------------------------------------------- | +| $(this) | 选取当前 HTML 元素 | +| $("p.intro") | 选取 class 为 intro 的

元素 | +| $("p:first") | 选取第一个

元素 | +| $("ul li:first") | 选取第一个