From 607008093390fc371e50dda02bfd8f064cb4916f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9E=97=E4=B8=96=E6=B6=9B?= <2124876211@qq.com>
Date: Sun, 27 Nov 2022 22:42:08 +0800
Subject: [PATCH 1/2] =?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.25\344\275\234\344\270\232.html" | 63 +++++++++++++++++++
.../2022.11.25\347\254\224\350\256\260.md" | 40 ++++++++++++
2 files changed, 103 insertions(+)
create mode 100644 "23\346\236\227\344\270\226\346\266\233/\344\275\234\344\270\232/2022.11.25\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.11.25\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.25\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.25\344\275\234\344\270\232.html"
new file mode 100644
index 0000000..a110d8b
--- /dev/null
+++ "b/23\346\236\227\344\270\226\346\266\233/\344\275\234\344\270\232/2022.11.25\344\275\234\344\270\232.html"
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+ 第一行 | 第一行 |
+
+
+ 第二行 | 第二行 |
+
+
+ 第三行 | 第三行 |
+
+
+ 第四行 | 第四行 |
+
+
+ 第五行 | 第五行 |
+
+
+
+
+
+
+
+
+
+
+
+
\ 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.11.25\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.11.25\347\254\224\350\256\260.md"
new file mode 100644
index 0000000..27515c3
--- /dev/null
+++ "b/23\346\236\227\344\270\226\346\266\233/\347\254\224\350\256\260/2022.11.25\347\254\224\350\256\260.md"
@@ -0,0 +1,40 @@
+JQuery的优点:
+ 1.代码简洁 2.完美兼容 3. 轻量级 4. 强大的选择器 5. 完善的AJAX 6. 丰富的插件 “简洁与高效”是jQuery最大的特点。
+Dom与Jquery包装集对象
+ 1.将DOM对象转成JQuery对象
+ var jqDiv = $(div);
+ $(jqDiv).click(
+ function () {
+ alert('这是js包装集对象弹窗')
+ }
+
+ 2.jquery对象 -->dom对象
+ console.log($('.div')[0]);
+JQuery选择器
+ 基础选择器:标签选择器
+ $('div')
+
+ id:# class: .
+
+ 选择所有元素:document之下的
+ console.log($('*'));
+
+ 群组选择器
+ console.log($('#box,.btn'));
+ 层次选择器
+ 1.后代:所有后代(不止一代)的元素 $('#parent div')
+ 2.子代(只找后面一代):$('#parent>div')
+ 3.相邻选择器:只能找后面一个元素
+ 4.同辈选择器:往后找多个
+ 伪类选择器
+ 获取所有表单元素 $(':input')
+
+ 标签
+ console.log($('input'));
+
+ 获取密码框
+ console.log($(':password'));
+
+ 表单属性伪类选择器
+ console.log($('input:checked'));
+ console.log($(':selected'));
--
Gitee
From d3e2ee5e5b6d05fa3f538eb9401b2cc56af623fd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9E=97=E4=B8=96=E6=B6=9B?= <2124876211@qq.com>
Date: Tue, 29 Nov 2022 21:03:44 +0800
Subject: [PATCH 2/2] =?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.28\344\275\234\344\270\232.html" | 238 ++++++++++++++++++
.../2022.11.28\347\254\224\350\256\260.md" | 44 ++++
2 files changed, 282 insertions(+)
create mode 100644 "23\346\236\227\344\270\226\346\266\233/\344\275\234\344\270\232/2022.11.28\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.11.28\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.28\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.28\344\275\234\344\270\232.html"
new file mode 100644
index 0000000..8909935
--- /dev/null
+++ "b/23\346\236\227\344\270\226\346\266\233/\344\275\234\344\270\232/2022.11.28\344\275\234\344\270\232.html"
@@ -0,0 +1,238 @@
+
+
+
+
+
+
+
+ 高亮
+
+
+
+
+
+
+
+
+
+ 11月21日0-24时,31个省(自治区、直辖市)和新疆生产建设兵团报告新增确诊病例2225例。其中境外输入病例80例(广东35例,福建12例,重庆6例,云南6例,上海5例,浙江4例,四川3例,陕西3例,天津2例,湖南2例,内蒙古1例,江苏1例),含7例由无症状感染者转为确诊病例(浙江4例,福建1例,
+ 四川1例,陕西1例);本土病例2145例(广东781例,北京274例,四川240例,重庆178例,
+ 云南147例,山西89例,内蒙古77例,河南75例,江苏51例,浙江37例,黑龙江28例,
+ 陕西23例,辽宁22例,山东22例,新疆19例,甘肃14例,贵州13例,湖南11例,福建10例,
+ 湖北9例,河北5例,海南5例,上海4例,广西3例,青海3例,安徽2例,西藏2例,天津1例),
+ 含592例由无症状感染者转为确诊病例(广东434例,重庆38例,四川24例,浙江20例,甘肃14例,
+ 北京12例,内蒙古7例,湖南7例,江苏6例,陕西6例,山西4例,辽宁4例,黑龙江4例,福建3例,
+ 河南3例,广西2例,青海2例,安徽1例,云南1例)。新增死亡病例2例,均为本土病例
+ (河南1例,四川1例);无新增疑似病例。
+ 0
+ 1
+ 2
+ 3
+
+
+
+
+
+
+
+ 用户名:
+ 密 码:
+ 确认密码:
+
+
+
+
+
+
+
+
+
+
\ 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.11.28\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.11.28\347\254\224\350\256\260.md"
new file mode 100644
index 0000000..5169f44
--- /dev/null
+++ "b/23\346\236\227\344\270\226\346\266\233/\347\254\224\350\256\260/2022.11.28\347\254\224\350\256\260.md"
@@ -0,0 +1,44 @@
+获取值
+$('#div').html()
+$('#div').text()
+$('#div').val()
+
+设置值
+$('#div').html('北京');
+$('#op').val('poo');
+
+css({样式1:样式值, 样式2:样式值})
+$('#conRed').css({"background":"cyan", "color":"red"})
+
+添加属性
+$('#conRed').attr('class','green');
+$('#conRed').addClass('red');
+
+var $h3 = $('这是新创建的元素
');
+1.在$('f1')添加子元素($h3)
+$('#f1').prepend($h3);
+
+
+添加子元素($h3)到$('f1')
+$h3.prependTo($('#f1'))
+
+append:添加子元素
+$('#f2').after($h3);
+$h3.appendTo($('#f2'));
+
+after:添加子元素到同辈
+$('#f2').after($h3);
+
+before:
+$('#f2').before($h3);
+
+remove:子元素及自身删除
+$('.green').remove();
+empty:删除子元素,自身不会被删除
+$('.green').empty();
+
+each
+$('huhu').each(
+ function(index,element){
+ }
+)
\ No newline at end of file
--
Gitee