码迷,mamicode.com
首页 > Web开发 > 详细

格式化Json传递的日期

时间:2017-10-15 21:09:03      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:dex   new   ring   格式化   日期类   parse   turn   class   replace   

自定义日期类型转化函数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传递的日期

标签:dex   new   ring   格式化   日期类   parse   turn   class   replace   

原文地址:http://www.cnblogs.com/senfanxie/p/7672966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!