JS里面Data日期格式转换
程序员文章站
2022-05-05 14:49:30
...
var format = function(time, format){
var t = new Date(time);
var tf = function(i){return (i < 10 ? '0' : '') + i};
return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function(a){
switch(a){
case 'yyyy':
return tf(t.getFullYear());
break;
case 'MM':
return tf(t.getMonth() + 1);
break;
case 'mm':
return tf(t.getMinutes());
break;
case 'dd':
return tf(t.getDate());
break;
case 'HH':
return tf(t.getHours());
break;
case 'ss':
return tf(t.getSeconds());
break;
}
})
}
var date = format(new Date(), 'yyyy-MM-dd');
上一篇: 发现老公有外遇我心理有阴影,怎么走出阴影
下一篇: 日期转换(正推与倒推)