>  기사  >  웹 프론트엔드  >  날짜를 전달하도록 Json 형식을 지정하는 방법

날짜를 전달하도록 Json 형식을 지정하는 방법

一个新手
一个新手원래의
2017-10-16 09:04:502259검색

맞춤형 날짜형 변환 함수 ChangeDateFormat, //Date(1294499956278+0800)// 형식의 함수를 2014-5-2


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;
          }
형식으로 변환합니다.

위 내용은 날짜를 전달하도록 Json 형식을 지정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.