예:
기존 문자열은 다음과 같습니다.
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");