js 每1秒刷新一次时间——定时器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 每1秒刷新一次时间——定时器相关的知识,希望对你有一定的参考价值。
点击begin 开始,每个1s更新时间。点击stop后,时间停止。、
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script> var ID; function start(){ if (ID == undefined) { foo(); ID=setInterval(foo, 1000) } } function stop(){ clearInterval(ID); ID=undefined; } function foo(){ var date = new Date(); document.getElementById(‘timer‘).value=date.toLocaleString(); } </script> </head> <body> <input type="text" id="timer"> <button onclick="start()">begin</button> <button onclick="stop()">stop</button> </body> </html>
以上是关于js 每1秒刷新一次时间——定时器的主要内容,如果未能解决你的问题,请参考以下文章