将时间戳转换成时间

2020-07-13 21:46 2023-12-03 01:03 标签:javascript

console.log(tools.timestampToDate(1553225805)+"===");

timestampToDate:function(str){
var testdate = new Date('1970-1-1');
testdate.setSeconds(str);
testdate.setHours(testdate.getHours()+8);
return testdate.Format("yyyy-MM-dd hh:mm:ss");
}


压缩解压