diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/20241024 JavaScript\345\237\272\347\241\200.md" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/20241024 JavaScript\345\237\272\347\241\200.md" new file mode 100644 index 0000000000000000000000000000000000000000..48f739e13950087639420113c4ce67a362ceb61a --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/20241024 JavaScript\345\237\272\347\241\200.md" @@ -0,0 +1,352 @@ +# 笔记 + +### 介绍: + + JavaScript 是一种高级的、解释型的编程语言,主要用于网页开发,实现网页的动态效果和交互功能。它由 Netscape 公司于1995年首次发布,并且很快成为网页开发的标准脚本语言。JavaScript 是一种基于原型的、多范式的动态脚本语言,支持面向对象、命令式和声明式(如函数式编程)风格。 + +### 主要特点: + +1. **客户端脚本语言**:JavaScript 主要运行在浏览器端,可以直接与HTML和CSS交互,实现网页的动态效果。 + +2. **事件驱动**:JavaScript 可以响应用户的操作,如点击、滚动、按键等事件,实现交互式功能。 + +3. **跨平台**:JavaScript 可以在任何支持它的浏览器上运行,几乎覆盖了所有主流操作系统和设备。 + +4. **对象和原型继承**:JavaScript 使用对象和原型链来实现继承,而不是传统的类继承。 + +5. **异步编程**:JavaScript 支持异步编程,如使用回调函数、Promise、async/await 等方式处理异步操作。 + +### 核心概念: + +- **变量**:用于存储数据值。 +- **函数**:执行特定任务的代码块。 +- **对象**:包含属性和方法的数据结构。 +- **事件**:响应用户操作的代码。 +- **DOM(文档对象模型)**:表示和交互HTML/XML文档的接口。 + +### 应用场景: + +1. **网页交互**:表单验证、动态内容更新、动画效果等。 + +2. **前端框架**:如React、Vue、Angular等,用于构建复杂的单页应用(SPA)。 + +3. **服务器端编程**:Node.js 允许JavaScript在服务器端运行,用于构建网络应用。 + +4. **移动应用开发**:如使用React Native等框架,可以使用JavaScript开发跨平台的移动应用。 + + + +## 二、作业部分 + +### 基础练习 + +#### 02-js书写位置-内部 + +```html + + + + + + + + Document + + + + + + + + +``` + +#### 03-js书写位置-外部 + +```html + + + + + + + + Document + + + + + + + + +``` + +#### 04-js书写位置-行内 + +```html + + + + + + + + Document + + + + + 行内方式写js + + + +``` + +05-结束符与注释 + +```html + + + + + + + + Document + + + + + + + + + + +``` + +#### 06-输入和输出语法 + +```html + + + + + + + + Document + + + + + + + + +``` + +#### 07-变量的使用与更新 + +```html + + + + + + + + Document + + + + + + + +``` + +#### 08-输入用户名案例 + +```html + + + + + + + + Document + + + + + + + +``` + +#### 09-交换2个变量 + +```html + + + + + + + + Document + + + + + + + +``` + +#### 10-变量的命名规范 + +```html + + + + + + + + Document + + + + + + + +``` + +#### 11-输入姓名年龄案例 + +```html + + + + + + + + Document + + + + + + + +``` + +#### 12-let和var的区别 + +```html + + + + + + + + Document + + + + + + + +``` + diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\344\275\234\344\270\232.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\344\275\234\344\270\232.html" new file mode 100644 index 0000000000000000000000000000000000000000..319b276b989be1a54c44ba1f961896477974c9d0 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\344\275\234\344\270\232.html" @@ -0,0 +1,86 @@ + + + + + + Document + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/00.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/00.html" new file mode 100644 index 0000000000000000000000000000000000000000..fae2ae41a0ec5b5410a066c4b5ade70838b80b7d --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/00.html" @@ -0,0 +1,16 @@ + + + + + + Document + + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/01-\344\275\223\351\252\214js.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/01-\344\275\223\351\252\214js.html" new file mode 100644 index 0000000000000000000000000000000000000000..33d0b760a26ad1159acae565bd107fbd323bfac8 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/01-\344\275\223\351\252\214js.html" @@ -0,0 +1,30 @@ + + + + + + + + 体验JS + + + + + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/02-js\344\271\246\345\206\231\344\275\215\347\275\256-\345\206\205\351\203\250.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/02-js\344\271\246\345\206\231\344\275\215\347\275\256-\345\206\205\351\203\250.html" new file mode 100644 index 0000000000000000000000000000000000000000..9f6816c298c904d7d3b6f327206036f39d0ed833 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/02-js\344\271\246\345\206\231\344\275\215\347\275\256-\345\206\205\351\203\250.html" @@ -0,0 +1,16 @@ + + + + + + + + Document + + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/03-js\344\271\246\345\206\231\344\275\215\347\275\256-\345\244\226\351\203\250.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/03-js\344\271\246\345\206\231\344\275\215\347\275\256-\345\244\226\351\203\250.html" new file mode 100644 index 0000000000000000000000000000000000000000..1a413922d242533dba551f3b3b607808516edce2 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/03-js\344\271\246\345\206\231\344\275\215\347\275\256-\345\244\226\351\203\250.html" @@ -0,0 +1,17 @@ + + + + + + + + Document + + + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/04-js\344\271\246\345\206\231\344\275\215\347\275\256-\350\241\214\345\206\205.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/04-js\344\271\246\345\206\231\344\275\215\347\275\256-\350\241\214\345\206\205.html" new file mode 100644 index 0000000000000000000000000000000000000000..1a413922d242533dba551f3b3b607808516edce2 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/04-js\344\271\246\345\206\231\344\275\215\347\275\256-\350\241\214\345\206\205.html" @@ -0,0 +1,17 @@ + + + + + + + + Document + + + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/05-\347\273\223\346\235\237\347\254\246\344\270\216\346\263\250\351\207\212.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/05-\347\273\223\346\235\237\347\254\246\344\270\216\346\263\250\351\207\212.html" new file mode 100644 index 0000000000000000000000000000000000000000..d6c47d420d67ff7f90dffa694bdbb7d41f6ef32b --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/05-\347\273\223\346\235\237\347\254\246\344\270\216\346\263\250\351\207\212.html" @@ -0,0 +1,19 @@ + + + + + + + + Document + + + + + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/06-\350\276\223\345\205\245\345\222\214\350\276\223\345\207\272\350\257\255\346\263\225.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/06-\350\276\223\345\205\245\345\222\214\350\276\223\345\207\272\350\257\255\346\263\225.html" new file mode 100644 index 0000000000000000000000000000000000000000..8ade6a3884ae1ca6ab80edee300bdaa52c47522d --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/06-\350\276\223\345\205\245\345\222\214\350\276\223\345\207\272\350\257\255\346\263\225.html" @@ -0,0 +1,24 @@ + + + + + + + + Document + + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/07-\345\217\230\351\207\217\347\232\204\344\275\277\347\224\250\344\270\216\346\233\264\346\226\260.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/07-\345\217\230\351\207\217\347\232\204\344\275\277\347\224\250\344\270\216\346\233\264\346\226\260.html" new file mode 100644 index 0000000000000000000000000000000000000000..16759b76c73e2484d4f90df668e36a77548586d8 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/07-\345\217\230\351\207\217\347\232\204\344\275\277\347\224\250\344\270\216\346\233\264\346\226\260.html" @@ -0,0 +1,29 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/08-\350\276\223\345\205\245\347\224\250\346\210\267\345\220\215\346\241\210\344\276\213.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/08-\350\276\223\345\205\245\347\224\250\346\210\267\345\220\215\346\241\210\344\276\213.html" new file mode 100644 index 0000000000000000000000000000000000000000..0bbd9d727ee042ce820174839746916944c26cd2 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/08-\350\276\223\345\205\245\347\224\250\346\210\267\345\220\215\346\241\210\344\276\213.html" @@ -0,0 +1,23 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/09-\344\272\244\346\215\2422\344\270\252\345\217\230\351\207\217.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/09-\344\272\244\346\215\2422\344\270\252\345\217\230\351\207\217.html" new file mode 100644 index 0000000000000000000000000000000000000000..49a8d1d233727164775a6bac427f0ce63a254faa --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/09-\344\272\244\346\215\2422\344\270\252\345\217\230\351\207\217.html" @@ -0,0 +1,27 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/10-\345\217\230\351\207\217\347\232\204\345\221\275\345\220\215\350\247\204\350\214\203.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/10-\345\217\230\351\207\217\347\232\204\345\221\275\345\220\215\350\247\204\350\214\203.html" new file mode 100644 index 0000000000000000000000000000000000000000..11bb66048e435ecddef57be597cfd511b5cf510b --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/10-\345\217\230\351\207\217\347\232\204\345\221\275\345\220\215\350\247\204\350\214\203.html" @@ -0,0 +1,26 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/11-\350\276\223\345\205\245\345\247\223\345\220\215\345\271\264\351\276\204\346\241\210\344\276\213.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/11-\350\276\223\345\205\245\345\247\223\345\220\215\345\271\264\351\276\204\346\241\210\344\276\213.html" new file mode 100644 index 0000000000000000000000000000000000000000..f1b78001f32a38e47c827c2dfbf52e0c4979c494 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/11-\350\276\223\345\205\245\345\247\223\345\220\215\345\271\264\351\276\204\346\241\210\344\276\213.html" @@ -0,0 +1,21 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/12-let\345\222\214var\347\232\204\345\214\272\345\210\253.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/12-let\345\222\214var\347\232\204\345\214\272\345\210\253.html" new file mode 100644 index 0000000000000000000000000000000000000000..9555257e12001010efd2abcedc4f6bddb977db5d --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/12-let\345\222\214var\347\232\204\345\214\272\345\210\253.html" @@ -0,0 +1,19 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/13-\344\275\223\351\252\214\346\225\260\347\273\204.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/13-\344\275\223\351\252\214\346\225\260\347\273\204.html" new file mode 100644 index 0000000000000000000000000000000000000000..d87f7a483b11ffe0d5a594c03d20b08033d83fa8 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/13-\344\275\223\351\252\214\346\225\260\347\273\204.html" @@ -0,0 +1,28 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/14-\345\270\270\351\207\217.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/14-\345\270\270\351\207\217.html" new file mode 100644 index 0000000000000000000000000000000000000000..e21a9081c5f047011dbbb855bd4eff80f25db648 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/14-\345\270\270\351\207\217.html" @@ -0,0 +1,23 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/15-\346\225\260\345\200\274\347\261\273\345\236\213.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/15-\346\225\260\345\200\274\347\261\273\345\236\213.html" new file mode 100644 index 0000000000000000000000000000000000000000..5b016c5e801fedd330a8b4f12e0d0a80531e0035 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/15-\346\225\260\345\200\274\347\261\273\345\236\213.html" @@ -0,0 +1,30 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/16-\350\256\241\347\256\227\345\234\206\347\232\204\351\235\242\347\247\257.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/16-\350\256\241\347\256\227\345\234\206\347\232\204\351\235\242\347\247\257.html" new file mode 100644 index 0000000000000000000000000000000000000000..79a8bdcecb1321feb06df33e8bd3f4f74fb5e872 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/16-\350\256\241\347\256\227\345\234\206\347\232\204\351\235\242\347\247\257.html" @@ -0,0 +1,24 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/17-\345\255\227\347\254\246\344\270\262\347\261\273\345\236\213.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/17-\345\255\227\347\254\246\344\270\262\347\261\273\345\236\213.html" new file mode 100644 index 0000000000000000000000000000000000000000..da8d152bfa630464aa3858ac745de0b6e3ac6d10 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/17-\345\255\227\347\254\246\344\270\262\347\261\273\345\236\213.html" @@ -0,0 +1,39 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/18-\346\250\241\346\235\277\345\255\227\347\254\246\344\270\262.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/18-\346\250\241\346\235\277\345\255\227\347\254\246\344\270\262.html" new file mode 100644 index 0000000000000000000000000000000000000000..5dc2178f98f2f293657a33f0ffd3d277a422945d --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/18-\346\250\241\346\235\277\345\255\227\347\254\246\344\270\262.html" @@ -0,0 +1,23 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/19-\345\205\266\344\273\226\344\270\211\347\247\215\347\261\273\345\236\213.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/19-\345\205\266\344\273\226\344\270\211\347\247\215\347\261\273\345\236\213.html" new file mode 100644 index 0000000000000000000000000000000000000000..eb989fb324c0c3f8bb256a5f476bfeaf86229b1c --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/19-\345\205\266\344\273\226\344\270\211\347\247\215\347\261\273\345\236\213.html" @@ -0,0 +1,29 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/20-\346\243\200\346\265\213\346\225\260\346\215\256\347\261\273\345\236\213.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/20-\346\243\200\346\265\213\346\225\260\346\215\256\347\261\273\345\236\213.html" new file mode 100644 index 0000000000000000000000000000000000000000..79eb438187593d49bf42b4770b3d83a74db88375 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/20-\346\243\200\346\265\213\346\225\260\346\215\256\347\261\273\345\236\213.html" @@ -0,0 +1,32 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/21-\351\232\220\345\274\217\350\275\254\346\215\242.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/21-\351\232\220\345\274\217\350\275\254\346\215\242.html" new file mode 100644 index 0000000000000000000000000000000000000000..4ce6c8739e83f84d002fddb916893c62053db19b --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/21-\351\232\220\345\274\217\350\275\254\346\215\242.html" @@ -0,0 +1,24 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/22-\346\230\276\347\244\272\350\275\254\346\215\242.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/22-\346\230\276\347\244\272\350\275\254\346\215\242.html" new file mode 100644 index 0000000000000000000000000000000000000000..698a70c9fc7fce45109fcf061ac82774c62908df --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/22-\346\230\276\347\244\272\350\275\254\346\215\242.html" @@ -0,0 +1,39 @@ + + + + + + + + Document + + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/23-\346\261\202\345\222\214\346\241\210\344\276\213.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/23-\346\261\202\345\222\214\346\241\210\344\276\213.html" new file mode 100644 index 0000000000000000000000000000000000000000..82de90528986226fe783b25de6a07496216e2586 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/23-\346\261\202\345\222\214\346\241\210\344\276\213.html" @@ -0,0 +1,20 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/24-\347\273\274\345\220\210\346\241\210\344\276\213.html" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/24-\347\273\274\345\220\210\346\241\210\344\276\213.html" new file mode 100644 index 0000000000000000000000000000000000000000..39d7dfe46d6fe3a9833ae6faab3ad461c6a9654a --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/24-\347\273\274\345\220\210\346\241\210\344\276\213.html" @@ -0,0 +1,67 @@ + + + + + + + + Document + + + + +

订单确认

+ + + + + + \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/R-C.jpg" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/R-C.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..9979666da96b97a78575070d36b5dac8c69930ba Binary files /dev/null and "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/R-C.jpg" differ diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/js/my.js" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/js/my.js" new file mode 100644 index 0000000000000000000000000000000000000000..ccdc928def075d3a747fb94c76f06c750f4ca2f6 --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/js/my.js" @@ -0,0 +1 @@ +document.write(666) \ No newline at end of file diff --git "a/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/js/test.js" "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/js/test.js" new file mode 100644 index 0000000000000000000000000000000000000000..eebe3ba3b115d19aa15d32d7d134beb5925248bd --- /dev/null +++ "b/\346\261\237\346\231\272\346\235\260/20241024 JavaScript\345\237\272\347\241\200/\346\241\210\344\276\213\346\274\224\347\244\272 - \347\273\203\344\271\240/js/test.js" @@ -0,0 +1 @@ +alert(5201314) \ No newline at end of file