首页 > 编程语言 > 详细

JavaScript中,格式化DateTime

时间:2016-10-08 19:19:14      阅读:274      评论:0      收藏:0      [点我收藏+]

参考 http://www.cnblogs.com/best/p/3537030.html

new Date(parseInt(list[i].StudyTime.replace(/\D/igm, ""))).toLocaleString()
运行结果 【2016/10/22 上午12:00:00】

new Date(parseInt(list[i].StudyTime.replace(/\D/igm, ""))).toString()

运行结果 【Sun Oct 23 2016 00:00:00 GMT+0800 (中国标准时间)】

new Date(parseInt(list[i].StudyTime.replace(/\D/igm, ""))).toDateString()

运行结果 【Mon Oct 24 2016】

JavaScript中,格式化DateTime

原文:http://www.cnblogs.com/John-Marnoon/p/5939391.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!