用clearinterval制作定时器,暂停失败,找不到问题出在哪.
<body>
<button id="stop">stop</button>
<button id="strat">strat</button>
<script>
var arr=setInterval(function()
{
var a=new Date();
year=a.getFullYear();
mouth=a.getMonth();
day=a.getDate();
hour=a.getHours();
minute=a.getMinutes();
second=a.getSeconds();
str=year+"-"+mouth+"-"+day+" "+hour+":"+minute+":"+second;
document.title=str;},1000)
b=document.getElementById('stop');
b.onclick=function(){
clearInterval(a);
}
c=document.getElementById('strat');
c.onclick=function(){
setInterval(a,1000);
}
</script>
</body>
检查了好久,都没看出问题在哪?刚做完的时候是可以暂停的,关掉再次执行就不行了。我把代码发给一个朋友,他说他可以暂停,就很神奇。