由这个任务想到了另一个
怎样实现点start按钮开始计时,点击stop停止计时?
怎样实现点start按钮开始计时,点击stop停止计时?
2015-06-18
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>计时器</title> <script type="text/javascript"> function clock(){ var time=new Date(); document.getElementById("clock").value = time; } var i=setInterval(clock,100); function timeClock(x){ if(x==0){ i=setInterval(clock,100); }else{ clearInterval(i); } } </script> </head> <body> <form> <input type="text" id="clock" size="50" /> <input type="button" value="Stop" onclick="timeClock(1)"/> <input type="button" value="Start" onclick="timeClock(0)"/> </form> </body> </html>
自己摸索出来的,你可以看看
举报