码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript中,格式化DateTime

时间:2016-10-08 19:20:03      阅读:150      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!