摘要: 用防抖动来阻止页面的重复提交: function debounce(func, wait) { let timeout return function () { clearTimeout(timeout) timeout = setTimeout(func, wait) //返回计时器 ID }} 阅读全文
posted @ 2019-07-01 09:39 泽泽生龙 阅读(2182) 评论(0) 推荐(0) 编辑