Date() (1) 썸네일형 리스트형 [JSP] 연월 계산 현재부터 12개월 기간의 연월 계산 function monthChk(){ var today = new Date(); //객체 생성 var year = today.getFullYear(); //현재 해 var month = today.getMonth() + 1; //현재 월 0~11 +1 var p1 = year+""+month; //'0'이 붙지않는 숫자의 경우 숫자간의 합산문제 발생 -> 문자화 +""+를 추가 var p2 = year+""+month_calc(month+1); var p3 = year+""+month_calc(month+2); var p4 = year+""+month_calc(month+3); var p5 = year+""+month_calc(month+4); var p6 = year.. 이전 1 다음