js获取当前日期时间“yyyy-MM-dd HH:MM:SS”

守給你的承諾、 提交于 2020-03-27 18:44:33

获取当前的日期时间 格式“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 }

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!