timestamp to time 时间戳转日期

function timestampToTime(timestamp) {
var date = new Date(timestamp * 1000);   //timestamp 为10位需*1000,timestamp 为13位的话不需乘1000
var Y = date.getFullYear() + '-';
var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
var D = (date.getDate() < 10 ? '0'+ date.getDate() : date.getDate()) + ' ';
var h = (date.getHours() < 10 ? '0'+ date.getHours() : date.getHours()) + ':';
var m = (date.getMinutes() < 10 ? '0'+ date.getMinutes() : date.getMinutes()) + ':';
var s = (date.getSeconds() < 10 ? '0'+ date.getSeconds() : date.getSeconds());
return Y+M+D+h+m+s;
}
console.log(timestampToTime(1535836027));
 
 
//output:
2018-09-02 05:07:07

猜你喜欢

转载自www.cnblogs.com/begin256/p/10016820.html