用js获取当前的时间包括年、月、日、时、分、秒

来源:互联网 发布:数据库相关书籍 编辑:程序博客网 时间:2024/05/30 04:51

代码如下:

<script>    function CurentTime()    {         var now = new Date();                var year = now.getFullYear();       //年        var month = now.getMonth() + 1;     //月        var day = now.getDate();            //日                var hh = now.getHours();            //时        var mm = now.getMinutes();          //分        var ss = now.getSeconds();           //秒                var clock = year + "-";                if(month < 10)            clock += "0";                clock += month + "-";                if(day < 10)            clock += "0";                    clock += day + " ";                if(hh < 10)            clock += "0";                    clock += hh + ":";        if (mm < 10) clock += '0';         clock += mm + ":";                  if (ss < 10) clock += '0';         clock += ss;         return(clock); } alert(CurentTime());</script>









0 0
原创粉丝点击