완벽하게 기능함!
$(".calendar-modal").datepicker({
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: '년',
beforeShow: function(input, inst) {
// Handle calendar position before showing it.
// It's not supported by Datepicker itself (for now) so we need to use its internal variables.
var calendar = inst.dpDiv;
// Dirty hack, but we can't do anything without it (for now, in jQuery UI 1.8.20)
setTimeout(function() {
calendar.position({
my: 'right top',
at: 'right bottom',
collision: 'none',
of: input
});
}, 1);
}
});
'[ Web 관련 ] > jQuery' 카테고리의 다른 글
Json 추출 - jQuery, 자바스크립트 + key 갯수 구하기 (0) | 2021.08.24 |
---|---|
jQuery 데이터 테이블 리스트 플러그인 (정렬, 검색, 페이징) (0) | 2021.08.13 |
제이쿼리 툴팁, tooltip (0) | 2021.05.18 |
특정 일 까지 카운트 다운 (남은 일:시간:분:초) (0) | 2021.04.30 |
상단 메뉴, 풀사이즈 메뉴, 전체 메뉴, 가로 네비게이션, 중복실행 방지 (0) | 2021.04.26 |