最簡單的節流函數

缺點是不能徹底封裝

switch=true
execTime:number
throttle(fn,interval){
    if(new Date().getTime()-this.execTime>interval){this.switch=true}
    if(this.switch){
        fn();
        this.switch=false;
        this.execTime=new Date().getTime();
    }
    
}
相關文章
相關標籤/搜索