我从Controller返回jsonresult,在输出时间就像/ Date(-2209152600000)/我正在使用我提到的函数转换这个格式:
function ConvertDate(jsondate) {
if (jsondate != null && jsondate != "") {
var getdate = jsondate;
var convertedDate = new Date(getdate);
if (convertedDate == 'Invalid Date') {
var milli = getdate.replace(/\/Date\((-?\d+)\)\//, '$1');
convertedDate = new Date(parseInt(milli));
}
return convertedDate;
}
else {
return "";
}
}
但问题是此功能在Mozilla和Internet Explorer中返回正确的日期和时间,但在Chrome最新更新中,它从控制器输出返回的时间少了9分钟