var getNowFormatDate = function() {
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 hours = date.getHours();
if (hours >= 0 && hours <= 9) {
hours = "0" + hours;
}
var minutes = date.getMinutes();
if (minutes >= 0 && minutes <= 9) {
minutes = "0" + minutes;
}
var seconds = date.getSeconds();
if (seconds >= 0 && seconds <= 9) {
seconds = "0" + seconds;
}
var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
+ " " + hours + seperator2 + minutes+ seperator2 + seconds;
return currentdate;
};
相关文章
- 12-06获取当前时间的字符串
- 12-06javascript中常见的函数封装 :判断是否是手机,判断是否是微信,获取url地址?后面的具体参数值,毫秒格式化时间,手机端px、rem尺寸转换等
- 12-06JS获取当前时间的前一个小时及格式化时间
- 12-06dayjs 获取距当前时间的相对时间字符串
- 12-06MySQL的数据类型,MySQL增删改--添加主外键、添加属性、删除主外键、改表名、获取系统当前时间等
- 12-0637岁程序员被裁,java获取当前时间的字符串
- 12-06Linux当中如何获取到系统当前的时间 【gettimeofday()的用法】
- 12-06JavaScript:获取系统当前时间,构造格式化的字符串
- 12-06C#中格式化获取到的当前系统时间的各种格式
- 12-06Unity3D获取系统当前时间,并格式化显示