首页 web前端 Flex布局 Grid布局 工具 在线编辑器 关于
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");
}