时间戳与日期格式之间的互相转换 1. 将时间戳转换成日期格式: function timestampToTime(timestamp) { var date = new Date(timestamp * 1000);/ … 继续阅读 时间戳与日期格式之间的互相转换