diff --git "a/\344\270\245\345\246\215/211201-CSS\344\275\234\344\270\232-\347\224\273\345\233\276 (2)/Demo01.html" "b/\344\270\245\345\246\215/211201-CSS\344\275\234\344\270\232-\347\224\273\345\233\276 (2)/Demo01.html"
new file mode 100644
index 0000000000000000000000000000000000000000..460ed946e9f81d6ec4df6e0fd92aec00b2c50977
--- /dev/null
+++ "b/\344\270\245\345\246\215/211201-CSS\344\275\234\344\270\232-\347\224\273\345\233\276 (2)/Demo01.html"
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+ A Simple Form
+ Form Fundamentals
+
+
+
diff --git "a/\344\270\245\345\246\215/211201-CSS\344\275\234\344\270\232-\347\224\273\345\233\276 (2)/Demo02.html" "b/\344\270\245\345\246\215/211201-CSS\344\275\234\344\270\232-\347\224\273\345\233\276 (2)/Demo02.html"
new file mode 100644
index 0000000000000000000000000000000000000000..e40f3611a126898874b5e41e53ce0060467cb67f
--- /dev/null
+++ "b/\344\270\245\345\246\215/211201-CSS\344\275\234\344\270\232-\347\224\273\345\233\276 (2)/Demo02.html"
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+ 企业账户注册
+ 个人账户注册
+
+
+
+
无企业营业执照的个人用户请注册个人账户,权益如下:做个人实名认证,作为买家身份采购:
+
+
+
+
了解更多:
+
会员名如何设置会更好?
+
会员账户注册不成功?
+
个人账户可以开店吗?
+
注册个人账户需要准备什么资料?
+
一个人能注册多个会员账户吗?
+
其它问题
+
+
+
+
+
有企业营业执照(含个体工商户)的用户请注册。权益如下:做企业实名认证;作为卖家身份开店;作为买家身份采购。
+
+
+
+
了解更多:
+
手机收不到验证码?
+
会员账户注册不成功?
+
企业账户如何开店?
+
会员名如何设置会更好?
+
阿里巴巴开店必须要营业执照?
+
其它问题
+
+
+
+
+
+
+
diff --git "a/\344\270\245\345\246\215/211202-CSS\344\275\234\344\270\232-\351\230\277\351\207\214\345\267\264\345\267\264\347\231\273\345\275\225\351\241\265\351\235\242/\347\224\273\345\233\276.html" "b/\344\270\245\345\246\215/211202-CSS\344\275\234\344\270\232-\351\230\277\351\207\214\345\267\264\345\267\264\347\231\273\345\275\225\351\241\265\351\235\242/\347\224\273\345\233\276.html"
new file mode 100644
index 0000000000000000000000000000000000000000..91e1e7cdafaa0bf373ffa41abd189f384fefbdce
--- /dev/null
+++ "b/\344\270\245\345\246\215/211202-CSS\344\275\234\344\270\232-\351\230\277\351\207\214\345\267\264\345\267\264\347\231\273\345\275\225\351\241\265\351\235\242/\347\224\273\345\233\276.html"
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git "a/\344\270\245\345\246\215/js\345\244\215\344\271\240/big.js" "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/big.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b779b11347afb1651212155d8ac4966258020cbb
--- /dev/null
+++ "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/big.js"
@@ -0,0 +1,54 @@
+$(function() {
+ // 点击全选按钮,所有商品的复选框状态会变更
+
+ $('#checkAll').change(function() {
+ $('.a-check').prop('checked', $(this).prop('checked'));
+ $('#checkAll').prop('checked', $(this).prop('checked'));
+
+ if ($('#checkAll').prop('checked') == true) {
+ $(".font").text("全不选");
+ } else {
+ $(".font").text("全选");
+ }
+ })
+
+ $('.a-check').click(function() {
+ // 判断选中的数量和所有复选框的数量是否一致
+ let len1 = $('.a-check').length;
+ let len2 = $('.a-check:checked').length;
+ if (len1 === len2) {
+ $('#checkAll').prop('checked', true);
+ $(".font").text("全不选");
+ } else {
+ $('#checkAll').prop('checked', false);
+ $(".font").text("全选");
+ }
+ })
+
+ $('#reverse').click(function() {
+ if ($('#checkAll').prop('checked') == true) {
+ $('#checkAll').prop('checked', false);
+ $('.a-check').prop('checked', false);
+ } else if ($('#checkAll').prop('checked') == false) {
+ $('#checkAll').prop('checked', true);
+ $('.a-check').prop('checked', true);
+ }
+ })
+
+ $('.a-submit').click(function() {
+ let str = '';
+ let items = $(':checkbox[name=lang]');
+ items.each(function(index, val) {
+ // console.log(val);
+ if ($(val).prop('checked')) {
+ // console.log($(val).val());
+ str += $(val).val() + ',';
+ }
+ })
+ if (str != '') {000000
+ alert('你选中的有' + str)
+ } else {
+ alert('你没有选中任何数')
+ }
+ })
+})
diff --git "a/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo01.html" "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo01.html"
new file mode 100644
index 0000000000000000000000000000000000000000..06fc98442c7653197ba851f9159d8bbc28b3338c
--- /dev/null
+++ "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo01.html"
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
diff --git "a/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo02.html" "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo02.html"
new file mode 100644
index 0000000000000000000000000000000000000000..62b91fa93319e9b6a622a381b3ec3455230b78ce
--- /dev/null
+++ "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo02.html"
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
diff --git "a/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo03.html" "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo03.html"
new file mode 100644
index 0000000000000000000000000000000000000000..d81847c5008eb3f90de3dc1dc8a21ddaed27e554
--- /dev/null
+++ "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo03.html"
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
diff --git "a/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo04.html" "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo04.html"
new file mode 100644
index 0000000000000000000000000000000000000000..d43bb80c0b6c6f994a46ce12797cfcf7b417bfd6
--- /dev/null
+++ "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo04.html"
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo05.html" "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo05.html"
new file mode 100644
index 0000000000000000000000000000000000000000..af431bb926ef8d71007150065b21f356ac8eedb6
--- /dev/null
+++ "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/demo05.html"
@@ -0,0 +1,30 @@
+
+
+
+
+
+ Document
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\270\245\345\246\215/js\345\244\215\344\271\240/finally.html" "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/finally.html"
new file mode 100644
index 0000000000000000000000000000000000000000..a12e3b87f9c6b698ad828a29a30f489bec74d834
--- /dev/null
+++ "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/finally.html"
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\270\245\345\246\215/js\345\244\215\344\271\240/jquery-3.6.0.js" "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/jquery-3.6.0.js"
new file mode 100644
index 0000000000000000000000000000000000000000..fc6c299b73e792ef288e785c22393a5df9dded4b
--- /dev/null
+++ "b/\344\270\245\345\246\215/js\345\244\215\344\271\240/jquery-3.6.0.js"
@@ -0,0 +1,10881 @@
+/*!
+ * jQuery JavaScript Library v3.6.0
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright OpenJS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2021-03-02T17:08Z
+ */
+( function( global, factory ) {
+
+ "use strict";
+
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+ // For CommonJS and CommonJS-like environments where a proper `window`
+ // is present, execute the factory and get jQuery.
+ // For environments that do not have a `window` with a `document`
+ // (such as Node.js), expose a factory as module.exports.
+ // This accentuates the need for the creation of a real `window`.
+ // e.g. var jQuery = require("jquery")(window);
+ // See ticket #14549 for more info.
+ module.exports = global.document ?
+ factory( global, true ) :
+ function( w ) {
+ if ( !w.document ) {
+ throw new Error( "jQuery requires a window with a document" );
+ }
+ return factory( w );
+ };
+ } else {
+ factory( global );
+ }
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var flat = arr.flat ? function( array ) {
+ return arr.flat.call( array );
+} : function( array ) {
+ return arr.concat.apply( [], array );
+};
+
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML