美文网首页
前端-第17天-学习

前端-第17天-学习

作者: 看三小 | 来源:发表于2018-11-09 08:49 被阅读1次

    定时器制作时钟

    <script type="text/javascript">
    window.onload = function(){
    var oDiv = document.getElementById('div1');
    function timego(){
    var now = new Date();
    var year = now.getFullYear();
    var month = now.getMonth()+1;
    var date = now.getDate();
    var week = now.getDay();
    var hour = now.getHours();
    var minute = now.getMinutes();
    var second = now.getSeconds();
    var str = '当前时间是:'+ year + '年'+month+'月'+date+'日 '+toweek(week)+' '+todou(hour)+':'+todou(minute)+':'+todou(second);
    oDiv.innerHTML = str;
    }
    timego();
    setInterval(timego,1000);
    }

    相关文章

      网友评论

          本文标题:前端-第17天-学习

          本文链接:https://www.haomeiwen.com/subject/nfdvxqtx.html