달력 (1) 썸네일형 리스트형 [Java Script] 만년달력 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 만년 달력 var today = new Date(); // 오늘 날짜 function prevCalendar() { // 이전 달을 today에 값을 저장하고 달력을 뿌려줍니다. today = new Date(today.getFullYear(), today.getMonth() - 1, today.getDate()); buildCalendar(); } functi.. 이전 1 다음