/*将JSON Date 格式转换为JavaScript 的Date 类型
JSON Date 格式:"/Date(146471041000)/"
*/
function JSONDateToJSDate(jsondate) {
if (jsondate != "" && jsondate != null) {
var date = new Date(parseInt(jsondate.replace("/Date(", "").replace(")/", ""), 10));
return date;
}
}

04-23 12:26