日期格式和时间戳之间的转化

日期格式转化为时间戳:

function timeTotimestamp(date) {
  var time = new Date(date).getTime() / 1000; //除以1000为秒,否则为毫秒
  return (time);
}

时间戳转化为日期格式:

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;
}
原文地址:https://www.cnblogs.com/tizi/p/8692933.html