function debounce(fn, delay) {var timerreturn function () {var context = thisvar args = arguments
clearTimeout(timer)timer = setTimeout(function () {
fn.apply(context, args)
}, delay)}}代码如上 不明白这里为什么一定要 return function 加一层是干什么用的求解
添加回答
举报
0/150
提交
取消