标签:停止 tin style int 括号 val 定时 span set
最近写代码,需要停止interval之后再重新启动,开始使用代码如下,发现无法重新启动
function func(){console.log("print")} //定时任务 var interval = setInterval(func, 2000); //启动,func不能使用括号 clearInterval(interval );//停止 interval;//期望可以重新启动,却发现不可以
通过查找相关资料以及尝试,代码修改如下
function func(){console.log("print")} //定时任务 var interval = setInterval(func, 2000); //启动,func不能使用括号 clearInterval(interval );//停止 interval = setInterval(func, 2000); //重新启动即可
此时,搞定
标签:停止 tin style int 括号 val 定时 span set
原文地址:http://www.cnblogs.com/fengxm/p/6150537.html