ÇöÁö½Ã°£À» »ç¿ëÇÏ¿© Date °³Ã¼ÀÇ ÀÏÀÚ°ªÀ» ¹ÝȯÇÑ´Ù.

Àμö/ÆĶó¸ÞÅÍ
object

ÇʼöÀûÀÎ object ÂüÁ¶´Â Date °³Ã¼ÀÌ´Ù.

ÆĶó¸ÞÅÍ

ÆĶó¸ÞÅÍ´Â ¾ø´Ù.

¹Ýȯ°ª

¹Ýȯ°ª iData´Â Date °³Ã¼ÀÇ ÀÏÀÚ°ªÀ» ³ªÅ¸³»´Â 1ºÎÅÍ 31±îÁöÀÇ Á¤¼öÀÌ´Ù.

Ư±â

ÇùÁ¤ ¼¼°è Ç¥ÁؽÃ(UTC)¸¦ »ç¿ëÇÏ¿© ÀÏÀÚ°ªÀ» °¡Á®¿À·Á¸é getUTCDate ¸Þ¼­µå¸¦ »ç¿ëÇ϶ó.



°£´ÜÇÑ getDate ¿¹Á¦

<SCRIPT>document.write('Áö±ÝÀº ÇöÁö½Ã°£ '+new Date().getDate()+'ÀÏÀÌ´Ù.');</SCRIPT>

ÇöÀç ÀÏÀÚ Ãâ·Â getDate ¸Þ¼­µå ¿¹Á¦

<SCRIPT>
var br='<BR>'; // ÁٹٲÞ
var str=''; // Ãâ·Â ¹®ÀÚ¿­ º¯¼ö ¼±¾ð
var now=new Date(); // ÇöÀç ½Ã°£À» º¯¼ö¿¡ ÇÒ´ç
str+='now=new Date()'+br; // ÇöÀç½Ã°£ º¯¼ö ¼³Á¤ ³»¿ª º¸¿©ÁÜ
str+='now.toLocaleString()='+now.toLocaleString()+br+br; // ÇöÀç ½Ã°£ Ãâ·Â

str+='now.getDate()='+now.getDate()+br+br; // ÀÏÀÚ°ª Ãâ·Â
str+='¿À´ÃÀº: now.getYear()+"³â "+(now.getMonth()+1)+"¿ù "+now.getDate()+"ÀÏ"='
  +now.getYear()+'³â '+(now.getMonth()+1)+'¿ù '+now.getDate()+'ÀÏ'+br;
document.write(str); // °á°ú ¹®ÀÚ¿­ Ãâ·Â
</SCRIPT>