BUG记录C# 前端 /Date(xxxxxxxx)/

public…{
var obj=…
return this.Json(obj.data)
}

前端结果为 /Date(1332919782070)/

//js脚本转载自 https://zhidao.baidu.com/question/402246698.html
function ChangeDateFormat(val) {
if (val != null) {
var date = new Date(parseInt(val.replace("/Date(", "").replace(")/", ""), 10));
//月份为0-11,所以+1,月份小于10时补个0
var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
return date.getFullYear() + "-" + month + "-" + currentDate;
}
return "";
}

猜你喜欢

转载自blog.csdn.net/qq_33981438/article/details/83029872