码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript 手写必备

时间:2021-06-11 18:25:11      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:settime   this   delay   comm   ide   on()   lse   type   deb   

防抖

function debounce(fun,delay){
  let timer = null
  return function(){
    if(timer){
      clearTimeout(timer)
    }
    timer = setTimeout(()=>{
      fun.apply(this,arguments)
    },delay)
  }
}

节流

function throttle(fun,delay){
  let valid = true
  return function(){
    if(!valid) return
    valid = false
    setTimeout(()=>{
      fun.apply(this,arguments)
      valid = true
    },delay)
  }
}

new

function createObject(obj){
  let ins
  function F(){}
  F.prototype = p
  ins = new F()
  return ins
}

防抖https://www.bilibili.com/video/BV1fB4y1F7Vd/?spm_id_from=333.788.recommend_more_video.3


防抖


防抖


防抖


``

Javascript 手写必备

标签:settime   this   delay   comm   ide   on()   lse   type   deb   

原文地址:https://www.cnblogs.com/x-mao/p/14873509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!