취업/Datepicker
[daterangepicker] 달력 연도 선택과 세팅
카슈밀
2021. 12. 10. 10:00
반응형
let max = moment().add(1, 'y').format('YYYY');
$('#datetime').daterangepicker({
showDropdowns: true,
autoApply:true,
"minYear": 2017,
"maxYear": parseInt(max), // parseInt 필수
"locale": {
"format": "YYYY-MM-DD",
"separator": " ~ ",
"applyLabel": "확인",
"cancelLabel": "취소",
"fromLabel": "From",
"toLabel": "To",
"customRangeLabel": "Custom",
"weekLabel": "W",
"daysOfWeek": ["일", "월", "화", "수", "목", "금", "토"],
"monthNames": ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"],
},
"drops": "auto"
});
728x90