i++;
document.getElementById('show').value?=?i;
}
window.onload=function(){?var?timer?=?'';
var?but1?=?document.getElementById('but1');
var?but2?=?document.getElementById('but2');
but1.onclick=function(){
timer?=?setInterval('ss()',1000);
}
but2.onclick=function(){
clearInterval(timer);
}
} 或者 window.onload=function(){?var?timer?=?'';
var?but1?=?document.getElementById('but1');
var?but2?=?document.getElementById('but2');
var?i=0;
function?ss(){
i++;
document.getElementById('show').value?=?i;
}
but1.onclick=function(){
timer?=?setInterval(ss,1000);
}
but2.onclick=function(){
clearInterval(timer);
}
}