摘要: 在事件被触发 n 秒后再执行回调,如果在这 n 秒内又被触发,则重新计时。 防抖函数(debounce) 1 const debounce = (cb, delay = 1000) => { 2 let timer = null; 3 return function (...args) { 4 co 阅读全文
posted @ 2021-10-19 09:14 土豆儿哥 阅读(45) 评论(0) 推荐(0) 编辑