js反序列化时间

时间:2023-03-08 16:54:13

var time = "/Date(1279270720000+0800)/";

var tme1 = ChangeDateFormat(time); alert(tme1);

js反序列化时间
JS方法为:
 
function ChangeDateFormat(cellval) {
var date = new Date(parseInt(cellval.replace("/Date(", "").replace(")/", ""), 10));
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;
}