摘要: tool.js文件 export function deBounce(func, wait) { let timeOut = null; return function (...args) { clearTimeout(timeOut);//一定要清除定时器 timeOut = setTimeout 阅读全文
posted @ 2023-07-13 10:58 zjxgdq 阅读(4) 评论(0) 推荐(0) 编辑