Posted in Javascript onSeptember 08, 2013
json格式的时间显示为:/Date(1377828670436)/需要转换为正常年月日,方法如下:
//通过序列化转换出来的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 了
json格式的时间显示为正常年月日的方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@