두개의 달력 ()~() 범위에서 minDate, maxDate 설정@@
$("#datepicker1").datepicker({
dateFormat:'yy-mm-dd'
,showMonthAfterYear : true
,changeMonth : true
,changeYear : true
,numberOfMonths:1
,showOn:'both'
,buttonImage:'/images/iconCalendarSmall.gif'
,buttonImageOnly :true
,buttonText :"날짜선택"
,dayNamesMin : ['일','월','화','수','목','금','토']
,monthNamesShort:['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월']
,onClose:function(selectedDate){
$('#datepicker2').datepicker("option","minDate",selectedDate);
}
//,minDate : -0 //오늘날짜 이후부터만 설정되게
});
$("#datepicker2").datepicker({
dateFormat:'yy-mm-dd'
,showMonthAfterYear : true
,changeMonth : true
,changeYear : true
,numberOfMonths:1
,showOn:'both'
,buttonImage:'/images/iconCalendarSmall.gif'
,buttonImageOnly :true
,buttonText :"날짜선택"
,dayNamesMin : ['일','월','화','수','목','금','토']
,monthNamesShort:['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월']
,onClose:function(selectedDate){
$('#datepicker1').datepicker("option","maxDate",selectedDate);
}
//,minDate : -0 //오늘날짜 이후부터만 설정되게
});
'Web > jQuery' 카테고리의 다른 글
[jQuery] jquery 클릭한 객체 속성값 추출 / closest find children 차이점 (0) | 2016.08.05 |
---|---|
[jQuey]form과 ajax / form submit 막기 / onsubmit="return false;" (0) | 2016.08.05 |
[jQuery Plugin] ALS(any list scroller) / 슬라이드 플러그인 (0) | 2016.07.07 |
[JQuery 기본 개념] JQuery문법-Event / .on() (0) | 2016.06.23 |
[JQuery 기본 개념] JQuery문법-Chain기법이란? (0) | 2016.06.23 |