码迷,mamicode.com
首页 > Web开发 > 详细

js 每1秒刷新一次时间——定时器

时间:2017-10-14 18:28:21      阅读:677      评论:0      收藏:0      [点我收藏+]

标签:ima   round   int   tle   start   tar   document   clear   oca   

技术分享

点击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秒刷新一次时间——定时器

标签:ima   round   int   tle   start   tar   document   clear   oca   

原文地址:http://www.cnblogs.com/snail280721764/p/7667743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!