var showTime=function(){console.log(new Date().format("yyyy-MM-dd hh:mm:ss"))};
var showTimeInterval=setInterval(showTime,1000);
上面设定了一个定时器,每秒钟打印时间,Google浏览器里面的开发模式(F12呼出) Console页签下面执行可以看到效果。
当然,设定了定时器,万一我要关闭怎么办,有启动当前有停止,下面就是停止名为showTimeInterval的定时器。
clearInterval(showTimeInterval);
如果你没有未你的定时器定义名称,那我也没办法帮你。
timeOut相对比较简单,用法也一样, 只不过只执行一次。