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.replace(RegExp.$1, (this.getFullYear() "").substr(4 - RegExp.$1.length))
}
for(var k in o)
{
if(new RegExp("(" k ")").test(format))
{
format = format. replacement(RegExp .$1, RegExp.$1.length==1 ? o[k] : ("00" o[k]).substr(("" o[k]).length))
}
}
반환 형식;
}
var testDate = new Date( 1320336000000 );//정수, 밀리초여야 합니다.
var testStr = testDate.format("yyyy 연도 MM 월 dd 일 hh 시 mm 분 ss 초");
var testStr2 = testDate.format("yyyyMMdd hh:mm:ss");
alert(testStr " " testStr2);