>  기사  >  웹 프론트엔드  >  js_time 및 date의 날짜 및 시간 데이터 함수 코드 형식 지정

js_time 및 date의 날짜 및 시간 데이터 함수 코드 형식 지정

WBOY
WBOY원래의
2016-05-16 18:16:501165검색

예:
기존 문자열은 다음과 같습니다.
var dt="2010-1-1 12:20:20";
1단계: 날짜 및 시간 데이터로 변환

코드 복사 코드는 다음과 같습니다.

var newDt=new Date(dt.replace ( "-","/")));

2단계: 데이터 형식을 "yyyy-MM-dd"로 지정합니다.
(1) 날짜 연장
코드 복사 코드는 다음과 같습니다.

Date.prototype.format = function(format){
var o = {
"M " : this.getMonth() 1, //월
"d " : this.getDate(), //일
"h " : this.getHours (), //시간
"m " : this.getMinutes(), //분
"s " : this.getSeconds(), //초
"q " : Math.floor(( this.getMonth () 3)/3), //quarter
"S" : this.getMilliseconds() //millisecond
}
if(/(y )/.test(format)) {
format = format.replace(RegExp.$1, (this.getFullYear() "").substr(4 - RegExp.$1.length))
}
for(var k in o) {
if(new RegExp("(" k ")").test(format)) {
format = format.replace(RegExp.$1, RegExp.$1.length==1 ? o[k] : (" 00" o[k]).substr(("" o[k]).length))
}
}
반환 형식

(2) format을 사용하여 시간 형식 지정

코드 복사 코드는 다음과 같습니다.
var fmtDt= newDt.format("yyyy-MM-dd");

js의 처리 시간은 C#만큼 빠르지는 않지만 귀찮습니다.

코드 복사 코드는 다음과 같습니다.
var fmtDt=Convert.ToDateTime(dt).ToString("yyyy -MM-dd");

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