JS Date 객체 시간 포맷 기능 확장
2488 단어 Date 객체
Date.prototype.format =function(format)
{
var o = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"m+" : this.getMinutes(), //minute
"s+" : this.getSeconds(), //second
"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));
}
}
return format;
};
호출 방법은 다음과 같습니다.
var dt = new Date(); var nowDate = dt.format("yyyy-MM-dd hh:mm:ss");
현재 시간: 2013-12-02 14:02:11
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
9_인용 형식 ([6] 기타 인용 형식)단일 대상: 글로벌 대상(전국)이라는 대상이 존재하지 않고 무형의 대상은 내부에 몇 가지 방법과 속성을 정의했다. 그것이 바로 encodeURI, encodeURIComponent, decodeURI, decodeU...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.