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秒刷新一次时间——定时器的主要内容,如果未能解决你的问题,请参考以下文章

如何能让浏览的网页每间隔几秒刷新一次

每隔 xxxx 秒 刷新一次页面

每隔 xxxx 秒 刷新一次页面

每隔 x秒 刷新一次页面

MS Excel - 如何每 5 秒自动刷新一次单元格?

页面定时刷新或自动跳转