JS计时器

来源:互联网 发布:淘宝女装快捷短语 编辑:程序博客网 时间:2024/06/07 22:46
var c=0;var t;function timedCount(){    document.getElementById('txt').value=c;    c=c+1;    t=setTimeout("timedCount()",1000);}function stopCount(){    clearTimeout(t);}

原创粉丝点击