반응형
$(function() {
$("#datepicker").datepicker({
dateFormat: "yymmdd", // 데이터 포멧 , 20160905 형식
dayNamesMin: ['일', '월', '화', '수', '목', '금', '토'], //데이터 형식 일~토로
monthNames: ['1월','2월','3월','4월','5월','6월', '7월','8월','9월','10월','11월','12월'], // 달도 한글로
monthNamesShort: ['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월'], // 달도 한글로
beforeShowDay: noSundays
}
})
function noSundays(date) { //일요일, 2016년4월19일 비활성화
if(date.getFullYear()+'-'+(date.getMonth()+1)+'-'+date.getDate() == '2016-4-19'==true || date.getDay() == 0) {
return false;
}
return true;
}
)}
반응형
'jQuery' 카테고리의 다른 글
jquery 숫자만 입력 (0) | 2021.02.24 |
---|---|
jquery checkbox 전체선택 선택건수 (0) | 2020.03.31 |
jquery 플러그인 모음 (0) | 2015.12.17 |
Ajax 통신 중 Loading bar 구현 (ajaxStart, ajaxStop 이벤트) (0) | 2014.02.28 |
jQuery를 UI 레이아웃 플러그인 (1) | 2013.06.09 |