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

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

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

ÆĶó¸ÞÅÍ

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

¹Ýȯ°ª

¹Ýȯ°ª iMonth´Â Date °³Ã¼ÀÇ ¿ùÀÇ Á¤¼ö°ªÀ̸ç, ¹ÝȯµÇ´Â ¿ù°ªÀÇ ¹üÀ§´Â 0ºÎÅÍ 11±îÁö ÀÌ´Ù.

¹Ýȯ°ªÀº ½ÇÁ¦ ¿ù °ªº¸´Ù 1ÀÌ ÀÛ´Ù.

¼³¸í

Date °³Ã¼¿¡ "Sat Jan 25 15:53:26 UTC+0900 2003"ÀÌ ÀúÀåµÇ¾î ÀÖÀ¸¸é getMonth ¸Þ¼­µå´Â 0À» ¹ÝȯÇÑ´Ù.

Ư±â

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



°£´ÜÇÑ getMonth ¸Þ¼­µå ¿¹Á¦

<SCRIPT>document.write('Áö±ÝÀº ÇöÁö½Ã°¢ '+(new Date().getMonth()+1)+'¿ùÀÌ´Ù.');</SCRIPT>

ÇöÀçÀÏ Ç¥½Ã getMonth ¸Þ¼­µå ¿¹Á¦

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

str+='now.getMonth()='+now.getMonth()+br; // ¿ù °ª Ãâ·Â 0Àº 1¿ù, 1Àº 2¿ù....11Àº 12¿ù
str+='Áö±ÝÀº (now.getMonth()+1)='+(now.getMonth()+1)+'¿ù'+br+br;

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