json格式的时间显示为正常年月日的方法

复制代码 代码如下:


//通过序列化转换出来的json,如果里面有DateTime格式的,就不会正常显示时间,用下面的方法就可以了
var date=renderTime(json.AddDateTime);
//把读出来的json格式时间传入这个方法内
function renderTime(date){
var da = new Date(parseInt(date.replace("/Date(","").replace(")/","").split("+")[0]));
return da.getFullYear()+"-"+ (da.getMonth()+1)+"-" +da.getDate()+" " +da.getHours()+":"+da.getSeconds()+":"+da.getMinutes();
}
//最后显示时间的格式就是 2012-4-17 22:58 了

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdzfzz.html