摘要: 防抖(debounce) 在事件被触发n秒后再执行回调,如果在这n秒内又被触发,则重新计时 function debounce(func, delay) { let timer = null return function (...args) { if (timer) { clearTimeout( 阅读全文
posted @ 2021-02-17 18:50 懒懒同学不懒 阅读(64) 评论(0) 推荐(0) 编辑