소스코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | $( function () { $( "#datepicker" ).datepicker({ dayNames : [ "일요일" , "월요일" , "화요일" , "수요일" , "목요일" , "금요일" , "토요일" ], dayNamesMin : [ "일" , "월" , "화" , "수" , "목" , "금" , "토" ], showMonthAfterYear: true , nextText: "다음" , prevText: "이전" , dateFormat: "yy-mm-dd" }); }); //기본 날짜 지적하기 $( '#datepicker' ).datepicker( 'setDate' , '-7d' ); //today -7 $( '#datepicker' ).datepicker( 'setDate' , 'today' ); //today |
참고
"JavaScript / jQuery" 분류의 다른 글
[jQuery] jQuery.load (0) | 2014/01/03 |
[jQuery] jQuery가 지원하는 셀렉터들 (0) | 2014/01/02 |