首页 > 代码库 > JavaScript中,格式化DateTime

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】

JavaScript中,格式化DateTime