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

json date convert

时间:2014-09-14 12:37:37      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:io   ar   cti   on   c   new   r   js   return   

function getDateTime(jsondate) {
var date = new Date(parseInt(jsondate.replace("/Date(", "").replace(")/", ""), 10));
var year = date.getFullYear();
var month = date.getMonth() + 1;
var day = date.getDate();
var hh = date.getHours();
var mm = date.getMinutes();
var ss = date.getSeconds();
return year + "-" + month + "-" + day + " " + hh + ":" + mm + ":" + ss;
}

getDateTime("\/Date(1385827200000+0800)\/")

json date convert

标签:io   ar   cti   on   c   new   r   js   return   

原文地址:http://www.cnblogs.com/refactor/p/3970832.html

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