js 将时间戳 转换为年月日时分秒格式方法

前端APP 投稿 9800 0 评论

js 将时间戳 转换为年月日时分秒格式方法

js 将时间戳 转换为年月日时分秒格式方法。


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;
}

编程笔记 » js 将时间戳 转换为年月日时分秒格式方法

赞同 (52) or 分享 (0)
游客 发表我的评论   换个身份
取消评论

表情
(0)个小伙伴在吐槽