码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript setInterval()執行clearInterval() 再恢復setInterval()

时间:2016-01-11 20:11:59      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

clearInterval() 方法可取消由 setInterval() 设置的 timeout。

clearInterval() 方法的参数必须是由 setInterval() 返回的 ID 值。

 

setInterval()  =>clearInterval() =>setTimeout()

 

<!DOCTYPE html>
<html>
<head>
<script src="js/jquery-1.8.3.js">
</script>
<body>
<div id=‘show‘></div><br />
<input type=‘button‘ value=‘stop‘ onclick=‘fun1()‘/>
</body>
<script>
var getdata = setInterval(fun2,1000);
var showid = document.getElementById(show);
function fun1() {
    clearInterval(getdata);
    //showid.innerHTML = ‘waiting 10s‘;
    setTimeout(fun3,10000);
}
function fun2() {
    showid.innerHTML += 1;
}
function fun3() {
    getdata  = setInterval(bb,1000);
}
</script>
</head>
 
</html>

 

JavaScript setInterval()執行clearInterval() 再恢復setInterval()

标签:

原文地址:http://www.cnblogs.com/stuart/p/5122163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!