jQuery

jQuery datepicker 일요일, 특정일 비활성화 시키기

은둔한량 2016. 7. 27. 17:29
반응형

 


$(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;

        }

)}

 

반응형