- 博客(1)
- 收藏
- 关注
原创 JS中防抖和节流的区别
1.防抖 触发高频事件后n秒内函数只会执行一次,如果n秒内高频事件再次触发,则重新计算时间。 function debounce(fn, wait) { var timeout = null; return function() { if(timeout !== null) clearTimeout(timeout); timeout = setTimeout(fn, wait); } } // 处理函数 function handle() { console.log(Math.ra
2021-02-21 12:29:05 221
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人