码迷,mamicode.com
首页 > Web开发 > 详细

JS代码格式化时间戳

时间:2020-05-07 13:56:08      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:comment   结果   number   fun   art   time()   get   function   for   


JS代码格式化时间戳
一、[24小时制]yyyy-MM-dd HH:mm:ss

new 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"

JS代码格式化时间戳

标签:comment   结果   number   fun   art   time()   get   function   for   

原文地址:https://www.cnblogs.com/62zhanshen/p/12842116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!