JavaScript中,格式化DateTime

参考 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】

posted @ 2016-10-08 17:01  JohnMarnoon  阅读(165)  评论(0编辑  收藏  举报