let timer = null;
clearTimeout(timer); // 防抖,防止客户点击多次,多次提交 timer = setTimeout(function () { // 要执行的函数 }, 500);
节流