最新 最热

箭头函数不会修改this

function Person () { this.name = 'little bear', this.age = 18 setTimeout(()=>{console.log(this)})}var a = new Person()setTimeout里的this代表new Person出...

2018-06-21
0

箭头函数不会修改this

function Person () { this.name = 'little bear', this.age = 18 setTimeout(()=>{console.log(this)})}var a = new Person()setTimeout里的this代表new Person出...

2018-06-14
0

setTimeout的那些事

本文介绍了setTimeout函数的基本用法,包括延迟执行、循环执行、指定延迟执行、指定回调函数、取消定时器、定时器ID、封装好的常用工具函数以及实际场景中的应用案例。...

2017-12-28
0