From 20ff154300990aa8e78f610548d5bac352d22341 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 13 Feb 2023 16:45:44 +0800 Subject: [PATCH 1/2] wym --- wym/wish.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 wym/wish.html diff --git a/wym/wish.html b/wym/wish.html new file mode 100644 index 0000000..8fd0b0f --- /dev/null +++ b/wym/wish.html @@ -0,0 +1,12 @@ + + + + + + + 要工作了 + + +

好好学习,努力挣钱,养自己/养女朋友/养男朋友

+ + \ No newline at end of file -- Gitee From 974860807c4adadda2a71164c5f7d11fb8a09236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E9=80=B8=E6=B0=91?= <1677393308@qq.com> Date: Wed, 15 Feb 2023 03:05:45 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E6=AC=A1=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 王逸民 <1677393308@qq.com> --- .../\346\250\241\345\235\227/index.html" | 14 ++++++++++++++ .../\346\250\241\345\235\227/jsq.js" | 8 ++++++++ .../\346\250\241\345\235\227/shuzhi.js" | 3 +++ 3 files changed, 25 insertions(+) create mode 100644 "\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/index.html" create mode 100644 "\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/jsq.js" create mode 100644 "\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/shuzhi.js" diff --git "a/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/index.html" "b/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/index.html" new file mode 100644 index 0000000..b2ec421 --- /dev/null +++ "b/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/index.html" @@ -0,0 +1,14 @@ + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/jsq.js" "b/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/jsq.js" new file mode 100644 index 0000000..9304e33 --- /dev/null +++ "b/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/jsq.js" @@ -0,0 +1,8 @@ +let obj={ + jia :function jia(shu1,shu2){ + return shu1+shu2; + } +} + + +module.exports = obj; \ No newline at end of file diff --git "a/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/shuzhi.js" "b/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/shuzhi.js" new file mode 100644 index 0000000..b45016a --- /dev/null +++ "b/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/shuzhi.js" @@ -0,0 +1,3 @@ +let obj= require("./jsq.js"); + +console.log(obj.jia(10,20)); \ No newline at end of file -- Gitee