clearInterval 之后如何再次调用setInterval,实现时间走动
clearInterval 之后如何再次调用setInterval
clearInterval 之后如何再次调用setInterval
2018-11-28
<script type="text/javascript">
var i=setInterval(clock,1000);//设置定时器
function clock(){
var time=new Date();
document.getElementById("clock").value = time.toLocaleString('en');//显示时间
}
function stopTime(){
clearInterval(i);//取消定时器,时间停止
}
function startTime(){
var ii=setInterval(clock,1000);//再次设定定时器,时间继续走
i=ii;//第二次停止
}
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50" />
<input type="button" value="Stop" onclick="stopTime()" />
<input type="button" value="Start" onclick="startTime()"/>
举报