Js 时间戳 转日期的方法

参考:

https://segmentfault.com/a/1190000020273683

https://segmentfault.com/a/1190000019860308

 

function timestampToTime(timestamp) {
    var date = new Date(timestamp * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
    Y = date.getFullYear() + '-';
    M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
    D = date.getDate() + ' ';
    h = date.getHours() + ':';
    m = date.getMinutes() + ':';
    s = date.getSeconds();
    return Y+M+D+h+m+s;
}

 

posted @ 2022-01-13 13:10  凯宾斯基  阅读(462)  评论(0编辑  收藏  举报