From 957a9b67d7c6df88c79d442cd2755eb0ca987b76 Mon Sep 17 00:00:00 2001 From: itldg Date: Sat, 1 Apr 2023 13:05:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=E5=A4=9A=E4=BD=99=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../debounce.html" | 3 --- 1 file changed, 3 deletions(-) diff --git "a/28. \346\212\200\345\267\247-\345\207\275\346\225\260\351\230\262\346\212\226/\350\257\276\345\240\202\344\273\243\347\240\201/debounce.html" "b/28. \346\212\200\345\267\247-\345\207\275\346\225\260\351\230\262\346\212\226/\350\257\276\345\240\202\344\273\243\347\240\201/debounce.html" index 4a3c2c7..5d20982 100644 --- "a/28. \346\212\200\345\267\247-\345\207\275\346\225\260\351\230\262\346\212\226/\350\257\276\345\240\202\344\273\243\347\240\201/debounce.html" +++ "b/28. \346\212\200\345\267\247-\345\207\275\346\225\260\351\230\262\346\212\226/\350\257\276\345\240\202\344\273\243\347\240\201/debounce.html" @@ -16,9 +16,6 @@ // 将该函数的this传递到fn var curThis = this; // 将该函数的参数全部传递给fn - function slice() { - this; - } var args = Array.prototype.slice.call(arguments, 0); timerId = setTimeout(function () { -- Gitee