函数的节流和防抖



节流:

    //函数节流
// var oDiv =document.getElementById('show');
// var oBtn =document.getElementById('btn');

// function throttle(handler, wait) {
//  var lastTime = 0;
//  return function(e) {
//      var nowTime = new Date().getTime();
//      if(nowTime - lastTime > wait) {
//          // handler();
//          handler.apply(this, arguments)
//          lastTime = nowTime;
//      }
//  }
// }
// function buy(e) {
//  console.log(this,e)
//  oDiv.innerText = parseInt(oDiv.innerText) + 1;
// }
// oBtn.onclick = throttle(buy, 1000)

你可能感兴趣的:(函数的节流和防抖)