function getNowFormatDate() {
var date = new Date();
var seperator1 = "-";
var seperator2 = ":";
var month = date.getMonth() + 1;
var strDate = date.getDate();
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
+ " " + date.getHours() + seperator2 + date.getMinutes()
+ seperator2 + date.getSeconds();
return currentdate;
}
相关文章
- js 时间计算(加减天数、返回当前时间后一个星期的日期,返回格式yyyy-MM-dd)
- .net 判断日期格式yyyy-MM-dd hh:MM:ss的正则表达式
- js 获取当前日期或者前、后N天yyyy-MM-dd的方法
- JS简单获取当前日期时间的方法(yyyy-MM-dd hh:mm:ss)
- js 毫秒 转 时间 日期 yyyy-mm-dd hh-mm-ss
- js 获取当前日期时间 格式为 yyyy-mm-dd hh:MM:ss
- 使用js时,如何获取系统当前时间并且得到格式为"yyyy年MM月"的日期
- js将日期格式转换为YYYY-MM-DD HH:MM:SS
- PHP 日期格式:yyyy-MM-dd'T'HH:mm:ss.SSSZ 的写法
- JS日期显示格式 yyyy-MM-dd hh:mm:ss