获取当前的日期时间的js函数,格式为“yyyy-MM-dd hh:mm:ss”
Posted 秋水_cnblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取当前的日期时间的js函数,格式为“yyyy-MM-dd hh:mm:ss”相关的知识,希望对你有一定的参考价值。
1 //获取当前的日期时间函数,格式为“yyyy-MM-dd hh:mm:ss” 2 function getNowFormatDate(date) { 3 if (date == null) { 4 var date = new Date(); 5 } 6 var seperator1 = "-"; 7 var seperator2 = ":"; 8 var month = date.getMonth() + 1; 9 if (month >= 1 && month <= 9) { 10 month = "0" + month; 11 } 12 var strDate = date.getDate(); 13 if (strDate >= 0 && strDate <= 9) { 14 strDate = "0" + strDate; 15 } 16 var hour = date.getHours(); 17 if (hour >= 0 && hour <= 9) { 18 hour = "0" + hour; 19 } 20 var minute = date.getMinutes(); 21 if (minute >= 0 && minute <= 9) { 22 minute = "0" + minute; 23 } 24 var sec = date.getSeconds(); 25 if (sec >= 0 && sec <= 9) { 26 sec = "0" + sec; 27 } 28 var currentdate = date.getFullYear() + seperator1 + month + seperator1 29 + strDate + " " + hour + seperator2 + minute 30 + seperator2 + sec; 31 return currentdate; 32 }
以上是关于获取当前的日期时间的js函数,格式为“yyyy-MM-dd hh:mm:ss”的主要内容,如果未能解决你的问题,请参考以下文章