]
시간은 현재 시간
코드는 다음과 같습니다.
//1.2013- 4-9 11:21:32
//2.2013년 4월 9일 11:21:32
//3.2013년 4월 9일 오전 11:21:32
//4.4월 9일 , 2013년 13:21:32 오후 초
/*
var thedate = new Date()
alert(thedate.getFullYear() '-' thedate.getMonth() '-' thedate.getDate( ) ' ' thedate.toLocaleTimeString() );
alert(thedate.toLocaleDateString() ' ' thedate.getHours() 'point' thedate.getMinutes() '분' thedate.getSeconds() '초'); >if (thedate.getHours() < 12) {
alert(thedate.toLocaleDateString() 'am' thedate.getHours() 'point' thedate.getMinutes() '분' thedate.getSeconds() '초' );
}
else {
alert(thedate.toLocaleDateString() 'pm' thedate.getHours() 'point' thedate.getMinutes() '분' thedate.getSeconds() '초');
}
* /