搜了一下發現這個時間戳轉時間的代碼很好用,附上實踐的代碼
結果如下
/
*
* 時間戳轉日期
* @param timestamp
* @returns {*}
*/
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() < 10 ? '0'+(date.getMinutes()) : date.getMinutes()) + ':';
s = (date.getSeconds() < 10 ? '0'+(date.getSeconds()) : date.getSeconds());
return Y+M+D+h+m+s;
}
---------------------
作者:Liuboxx1
來源:CSDN
原文:https://blog.csdn.net/Liuboxx1/article/details/80018072