javascript实现动态时钟的启动和停止

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>动态时钟的启动和停止</title> </head> <body background="img/2.jpg"> <!--1.显示当前时间 2.启动秒表 3.停止时钟 --> <h1>动态时钟</h1> <p> 当前时间:<span/> </span> </p> <p> <input type="button" value="start"/> <input type="button" value="stop"/> </p> </body> <script type="text/javascript"> var timer; function start(){ //设置定时器(方法的实现,毫秒数) timer=setInterval(function(){ var now=new Date(); var time=now.toLocaleTimeString(); var c=document.getElementById("clock"); c.innerHTML=time; },1000); } function stop(){ //暂停 清楚定时器 clearInterval(timer); } </script> </html>

效果截图:

javascript实现动态时钟的启动和停止

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/0046263f7ae33109be1ecaebd5802f16.html