获取当前的日期时间 格式“yyyy-MM-dd HH:MM:SS”
1 function getNowFormatDate() {
2 var date = new Date();
3 var seperator1 = "-";
4 var seperator2 = ":";
5 var month = date.getMonth() + 1;
6 var strDate = date.getDate();
7 if (month >= 1 && month <= 9) {
8 month = "0" + month;
9 }
10 if (strDate >= 0 && strDate <= 9) {
11 strDate = "0" + strDate;
12 }
13 var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
14 + " " + date.getHours() + seperator2 + date.getMinutes()
15 + seperator2 + date.getSeconds();
16 return currentdate;
17 }
来源:https://www.cnblogs.com/hyywaq/p/6378223.html