/**
*
* 2009년 9월 5일 14:15:23과 같이 지금부터 얼마나 경과했는지 형식화된 날짜를 반환합니다.
* 예: 현재 시간은 2009년 9월 5일 14:15:23입니다. timeLong=10초 후 반환: 2009년 9월 5일 14:15:33
*
* @param int timeLong a
* @param String formatString YYYY-MM-DD hh :mm:ss
*
*/
function getOneFormatDate(timeLong ,formatString)
{
timeLong=parseInt(timeLong);
timeLong=timeLong*1000;
var myDate=new Date();
var futureDate=new Date(parseInt(myDate.getTime()) timeLong);
var year=futureDate.getYear();
var Month=futureDate.getMonth();
var day=futureDate.getDate();
var hour=futureDate.getHours();
var 분=futureDate.getMinutes();
var second=futureDate.getSeconds();
if(hour<10)
{
hour="0" hour;
}
if(분<10)
{
분="0"분;
}
if(초<10)
{
초="0"초;
}
formatString=formatString.replace("YYYY",연도);
formatString=formatString.replace("MM",월);
formatString=formatString.replace("DD",day);
formatString=formatString.replace("hh",hour);
formatString=formatString.replace("mm",분);
formatString=formatString.replace("ss",second);
return formatString;
}