1. 程式人生 > >獲取當前的日期時間的js函數,格式為“yyyy-MM-dd hh:mm:ss”

獲取當前的日期時間的js函數,格式為“yyyy-MM-dd hh:mm:ss”

style mon func get minute ets logs var getdate

 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”