好程序員web前端分享用JavaScript實現的5個常見函數

<div id="container"></div>
<script>
  var count = 1
  var container = document.getElementById('container')
  function getUserAction(e) {
    // 空格
    if (e.keyCode === 32) {
      container.innerHTML = count++
    }
  }
  // document.onkeydown = debounce(getUserAction, 1000, false, true)
  document.onkeydown = throttle(getUserAction, 1000, true, true)
  function debounce(func, wait, leading, trailing) {}
  function throttle(func, wait, leading, trailing) {}
</script>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章