时间戳转换年月日

function timestampToTime(timestamp) {

var date =new Date(timestamp);//时间戳为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;//时分秒可以根据自己的需求加上

}

你可能感兴趣的:(时间戳转换年月日)