$('input[datepicker="on"]').datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd',
prevText: '이전 달',
nextText: '다음 달',
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월'],
dayNames: ['일', '월', '화', '수', '목', '금', '토'],
dayNamesShort: ['일', '월', '화', '수', '목', '금', '토'],
dayNamesMin: ['일', '월', '화', '수', '목', '금', '토'],
showMonthAfterYear: true,
yearSuffix: '년',
onSelect: function () {
},
beforeShow: function (textbox, inst) {
setTimeout(function () {
inst.dpDiv.css({
top: 50,
marginLeft: textbox.offsetWidth + 'px'
});
}, 0);
}
});


'javascript' 카테고리의 다른 글

jQuery 화면 끝단, 이벤트  (0) 2016.09.26
입력 폼 숫자만 받기  (0) 2016.09.05
jQuery select 생년월일 option tag 만들기  (0) 2016.03.25
javascript 문자열 체크  (0) 2016.03.22
jquery 엔터키 이벤트로 받아 처리  (0) 2016.02.04

+ Recent posts