摘要: 1、计时器1.1、重复型计时器var timer = setInterval(function () {//开启定时器 if(condition){ clearInterval(timer)//取消定时器 }else{ //do }})1.2、一次性计时器setTimeout()clearTimeo 阅读全文
posted @ 2018-12-01 13:09 chuanzi 阅读(174) 评论(0) 推荐(0) 编辑