摘要: /* 多次点击 只执行最后一次 */ const debounce = (function () { let timer = null; return function (func, delay = 1000) { if (timer) { clearTimeout(timer); } timer 阅读全文
posted @ 2020-07-01 10:17 ZeroShiro 阅读(225) 评论(0) 推荐(0) 编辑