因为我这里模拟的是用定时器来完成的,所以需要写一个函数来管理这个定时器(清除定时器)
function removeTime(time) { clearTimeout(time) // 清除这个定时器 return null }
具体的逻辑
<button id="btn">发送</button> <script> let btn = document.getElementById('btn'); function send() { console.log('发送中...') } function deal(func, time) { let betweenTime = null return function open(...params) { // 每一次点击,我们都会把当前的定时器清除. betweenTime = removeTime(betweenTime) // 清除定时器 betweenTime = setTimeout(() => { func.call(this, ...params) // 当当前的定时器执行完了,也是需要清除这个定时器的 betweenTime = removeTime(betweenTime) }, time) // 然后再定义一个定时器 } } btn.onclick = deal(send, 5000) </script>