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

js json中的时间转换格式

时间:2017-01-11 10:10:50      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:second   change   转换   json   日期   mon   格式   gets   return   

//根据json中的日期格式,转换成yyyy-mm-dd HH:mm:ss
function ChangeDateFormat(cellval) {
var date = new Date(parseInt(cellval.replace("/Date(", "").replace(")/", ""), 10));
var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
return date.getFullYear() + "-" + month + "-" + currentDate + " " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds();
}

js json中的时间转换格式

标签:second   change   转换   json   日期   mon   格式   gets   return   

原文地址:http://www.cnblogs.com/chongyao/p/6272427.html

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