这里写自定义目录标题
js日期格式化(yyyy-MM-dd HH:mm:ss)
function formartDate(param){
let date = new Date(param);
let Y = date.getFullYear() + '-';
let M = date.getMonth()+1 < 10 ? '0' + (date.getMonth() + 1) + '-' : date.getMonth() +1 + '-' ;
let D = date.getDate() < 10 ? '0' + date.getDate() + ' ' : date.getDate() + ' ';
let h = date.getHours() < 10 ? '0' + date.getHours() + ':' : date.getHours() + ':';
let m = date.getMinutes() <10 ? '0' + date.getMinutes() + ':' :date.getMinutes() + ':';
let s = date.getSeconds() <10 ? '0' + date.getSeconds() : date.getSeconds();
return Y +M +D + h + m + s;
}
版权声明:本文为ggxbob原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。