JS 10位时间戳转日期
作者:互联网
//时间戳转换方法 date:时间戳数字
function formatDate(date) {
var date = new Date(date*1000);
var YY = date.getFullYear() + '-';
var MM = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
var DD = (date.getDate() < 10 ? '0' + (date.getDate()) : date.getDate());
var hh = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':';
var mm = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()) + ':';
var ss = (date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds());
return YY + MM + DD +" "+hh + mm + ss;
}
复制代码然后调用
查看结果
标签:10,getMinutes,getSeconds,getHours,JS,var,日期,date 来源: https://blog.csdn.net/weixin_51010510/article/details/121333900