js基础作业3

2018-08-21  本文已影响0人  HavenYoung

实现文字时钟

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>实现文字时钟</title>
        <style type="text/css">
            #dshow {
                width: 500px;
                height: 40px;
                background-color: cyan;
                font-size: 25px;
                border-radius: 10px;
                text-align: center;
            }
        </style>
    </head>

    <body>
        <div id="dshow"></div>
    </body>

</html>
<script type="text/javascript">
    setInterval(function() {
        var ctime = new Date()
        var odshow = document.getElementById('dshow')
        var cyear = ctime.getFullYear()
        var cmonth = ctime.getMonth() + 1
        var cday = ctime.getDate()
        var chour = ctime.getHours()
        var cmin = ctime.getMinutes()
        var csec = ctime.getSeconds()
        odshow.innerHTML = '现在是:' + cyear + '年' + cmonth + '月' + cday + '日' +
            chour + '时' + cmin + '分' + csec + '秒'
    }, 1000)
</script>
上一篇 下一篇

猜你喜欢

热点阅读