1. 程式人生 > >格式化Json傳遞的日期

格式化Json傳遞的日期

clas 格式化json cnblogs subst pan var log for fun

自定義日期類型轉化函數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 }

格式化Json傳遞的日期