i关于局部变量的问题
i 在timedCount( )中定义了,不是只在这个函数中有效吗?
为什么在stopCount( )中还有效呢?
function timedCount(){
document.getElementById('txt').value=num;
num=num+1;
i=setTimeout(timedCount,1000);
}
function stopCount(){
clearTimeout(i);
}
i 在timedCount( )中定义了,不是只在这个函数中有效吗?
为什么在stopCount( )中还有效呢?
function timedCount(){
document.getElementById('txt').value=num;
num=num+1;
i=setTimeout(timedCount,1000);
}
function stopCount(){
clearTimeout(i);
}
2016-09-03
举报