JS代码格式化时间戳
2021-03-11 07:27
标签:comment 结果 number fun art time() get function for 通过上面的方法,基本就可以将日期格式化,然后稍加处理就能得到预期结果 同样,使用上述方法即可完成格式化 JS代码格式化时间戳 标签:comment 结果 number fun art time() get function for 原文地址:https://www.cnblogs.com/62zhanshen/p/12842116.html
JS代码格式化时间戳
一、[24小时制]yyyy-MM-dd HH:mm:ssnew Date().toJSON() // 2019-12-13T13:12:32.265Z
// new Date().getTime() 等价于 +new Date()
function formartLongTime(time=+new Date()) {
var date = new Date(time + 8 * 3600 * 1000); // 增加8小时得到东八区时间
return date.toJSON().substr(0, 19).replace(‘T‘, ‘ ‘);
}
二、[12小时制]yyyy/MM/dd HH:mm:ss
new Date().toLocaleString() // 2019/12/13 下午9:24:43
function formartLongTime(time=+new Date()) {
return new Date(time).toLocaleString();
} // "2019/12/13 下午9:34:54"