pcx105
//将时间戳转化为时间
function timestampToTime(timestamp) {
     var date = new Date(timestamp * 1000);//时间戳为10位需*1000,13位的话不需要
     Y = date.getFullYear() + "-";
     M = (date.getMonth()+1 < 10 ? \'0\'+(date.getMonth()+1) : date.getMonth()+1) + \'-\';
     D = date.getDate() + " ";
     H = date.getHours() + ":";
     MIN = date.getMinutes() + ":";
     S = date.getSeconds();
     return Y+M+D+H+MIN+S;
}

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-09-10
  • 2023-03-29
  • 2022-12-23
  • 2021-08-22
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-07
  • 2021-12-08
  • 2021-09-22
  • 2022-02-12
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案