json学习笔记(7)
来源:未知 责任编辑:责任编辑 发表时间:2014-02-02 17:49 点击:次
function ChangeDateFormat(jsondate) {
jsondate = jsondate.replace("/Date(", "").replace(")/", "");
if (jsondate.indexOf("+") > 0) {
jsondate = jsondate.substring(0, jsondate.indexOf("+"));
}
else if (jsondate.indexOf("-") > 0) {
jsondate = jsondate.substring(0, jsondate.indexOf("-"));
}
var date = new Date(parseInt(jsondate, 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;
}
//简单Demo :
//ChangeDateFormat("\/Date(1294499956278+0800)\/");
摘自 Item
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>