问答详情
源自:8-3 计时器setInterval()

这是最精简的写法吗?

<script type="text/javascript">
    var attime;
    function clock(){
        var time=new Date();
        var miao= time.getSeconds();
        miao= miao<10 ? '0'+ miao : miao;
        attime= time.getHours()+':'+time.getMinutes()+':'+miao;
        document.getElementById("clock").value = attime;
    }
    window.onload=function(){setInterval("clock()",1000);}
</script>


提问者:上善若水_0078 2019-11-29 16:27

个回答

  • 秋之枫华
    2019-12-01 11:58:19

    这样是不是更简洁呢?

    http://img2.mukewang.com/5de33a300001911c08130174.jpg