首页 > 技术文章 > 格式化Json传递的日期

senfanxie 2017-10-15 18:33 原文

自定义日期类型转化函数ChangeDateFormat,将//Date(1294499956278+0800)//形式的函数转化为2014-5-2形式

 1  function ChangeDateFormat(jsondate) {
 2               jsondate = jsondate.replace("/Date(", "").replace(")/", "");
 3               if (jsondate.indexOf("+") > 0) {
 4                   jsondate = jsondate.substring(0, jsondate.indexOf("+"));
 5               } else if (jsondate.indexOf("-") > 0) {
 6                   jsondate = jsondate.substring(0, jsondate.indexOf("-"));
 7               }
 8               var date = new Date(parseInt(jsondate, 10));
 9               var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
10               var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
11               return date.getFullYear() + "-" + month + "-" + currentDate;
12           }  

 

推荐阅读