定时器 发表于 2018-12-22 1.使用 setInterval12this.timerID = setInterval(fn, time);clearInterval(this.timerID); 2.angular 中使用 $interval 12this.timerID = $interval(fn, time);$interval.cancel(this.timerID)