参考:

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

 

相关文章:

  • 2021-10-03
  • 2021-11-02
  • 2021-12-07
  • 2021-12-10
  • 2021-12-08
  • 2021-11-30
  • 2021-11-28
猜你喜欢
  • 2021-11-02
  • 2021-12-08
  • 2021-09-27
  • 2021-11-02
  • 2021-11-01
  • 2021-12-08
  • 2021-11-28
  • 2021-12-08
相关资源
相似解决方案