共计 196 个字符,预计需要花费 1 分钟才能阅读完成。
缺点是不能完全封装
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();
}
}
正文完
发表至: javascript
2019-06-12