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

时钟操作js---显示时间点

时间:2020-06-25 23:46:33      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:lan   view   doctype   idt   mamicode   star   func   device   com   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body onload="startTime()">
    <div id="timetxt"></div>
    <script>
        function startTime(){
            var today = new Date();
            var h = today.getHours();
            var m = today.getMinutes();
            var s = today.getSeconds();
            m = checkTime(m);
            s = checkTime(s);
            document.getElementById("timetxt").innerHTML = h + ":" + m + ":" + s;
            t = setTimeout(function(){
                startTime();
            },1000); 
        }
        function checkTime(i){
            if(i<10){
                i = "0"+i;
            }
            return i;
        }
    </script>
</body>
</html>

  技术图片

时钟操作js---显示时间点

标签:lan   view   doctype   idt   mamicode   star   func   device   com   

原文地址:https://www.cnblogs.com/fdxjava/p/13193100.html

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