一切源于兴趣
// 函数防抖debounce(func, delay) { let timer = null return function () { clearTimeout(timer) timer = setTimeout(() => { ...