My Name is Kay....

DIY , 먹방 , 개발 , 육아 , 여행 좋아합니다.
AdBlock 사용시 화면이 정상적으로 노출되지 않습니다.
포스팅 관련 문의 및 개발 문의는 Email : wkzkfmxksi@gmail.com

추가 포스팅이 이뤄지지 않는 블로그입니다. 문의는 wkzkfmxksi@gmail.com 으로 연락주세요.
A to Z
2013.08.05 23:05

datepicker 달력

kay
조회 수 6315 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부

API Url : http://jqueryui.com/datepicker/   , Document : http://api.jqueryui.com/datepicker/

Test Url : http://www.uhoon.co.kr/test/1876.html


딱히 설명이 필요없는....달력입니다..

다양한 기능이 있지만 개인적으로 주로 사용하는 옵션은 아래와 같습니다..

주로 영문상태를 쓰지만 요일, 월 한글명은 필수옵션은 아닙니다.


<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>datepicker</title>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"/>
<script>
	$(function() {
		// 기간 설정 타입 1 
		// start Date 설정시 end Date의 min Date 지정
		$( "#startDt" ).datepicker({
			dateFormat: "yy-mm-dd",
			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월" ],
			defaultDate: "+1w",
			numberOfMonths: 1,
			changeMonth: true,
			showMonthAfterYear: true ,
			changeYear: true,
			onClose: function( selectedDate ) {
				$( "#endDt" ).datepicker( "option", "minDate", selectedDate );
			}
		}); 
		 // end Date 설정시 start Date max Date 지정
		$( "#endDt" ).datepicker({
			dateFormat: "yy-mm-dd",
			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월" ],
			defaultDate: "+1w",
			numberOfMonths: 1,
			changeMonth: true,
			showMonthAfterYear: true ,
			changeYear: true,
			onClose: function( selectedDate ) {
				$( "#startDt" ).datepicker( "option", "maxDate", selectedDate );
			}
		});

		// 기간 설정 타입 2 
		// start Date 설정시 end Date 가 start Date보다 작을 경우 end Date를 start Date와 같게 설정
		$("#startDt").datepicker({
			dateFormat: "yy-mm-dd",
			defaultDate: "+1w",
			numberOfMonths: 1,
			changeMonth: true,
			showMonthAfterYear: true ,
			changeYear: true,
			onClose: function( selectedDate ) {
				if ($( "#endDt" ).val() < selectedDate)
				{
					$( "#endDt" ).val(selectedDate);
				}
			}
		}); 
		// end Date 설정시 end Date 가 start Date 보다 작을 경우 start Date를  end Date와 같게 설정
		$( "#endDt" ).datepicker({
			dateFormat: "yy-mm-dd",
			defaultDate: "+1w",
			numberOfMonths: 1,
			changeMonth: true,
			showMonthAfterYear: true ,
			changeYear: true,
			onClose: function( selectedDate ) {
				if ($("#startDt" ).val() > selectedDate)
				{
					$("#startDt" ).val(selectedDate);
				}
			}
		});


		//날짜
		$( "#date" ).datepicker({
			changeMonth: true ,
			changeYear: true ,
			showMonthAfterYear: true ,
			dateFormat: "yy-mm-dd",
			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월" ],
			defaultDate: "+1w",
			numberOfMonths: 1
		}); 
	}); 
</script>
</head>
<body>
<div>
	<label for="날짜">날짜</label><input type="text" id="date" value=""/>
</div>
<div style="padding-top:50px;">
	<label for="기간">기간</label><input type="text" id="startDt" /> ~ <input type="text" id="endDt" />
</div>
</body>
</html>


* 날짜 선택 


datepicker.png


* 기간 선택 

- 시작일 변경시 종료일 min Date 를 시작일로 변경

- 종료일 변경시 시작일의 max Date 를 종료일로 변경 


기간.png


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
54 PlugIn jQuery Formatnumber , 콤마처리 kay 2015.11.03 2101
53 etc 기본값 가져오기 get default value kay 2014.10.19 2323
52 etc 페이지 또는 객체에서 특정 키워드 강조하기 2 kay 2014.06.14 2716
51 etc FadeIn , FadeOut 을 이용한 간단한 메인 배너 이미지 노출. kay 2014.10.23 2999
50 A to Z Jquery 로 defaultValue 읽어오기 kay 2013.10.03 3754
49 etc $.trim(str) trim... kay 2013.10.16 3958
48 A to Z readonly , disabled 지정하기 kay 2013.10.01 4109
47 A to Z jQuery Learning Center - 공부 공부 kay 2013.04.05 4236
46 UI Jquery 갤러리 "jQuery-awesome-images-Gallery-lightbox" file kay 2013.07.30 4260
45 etc Jquery Load 유무 체크하기 kay 2014.02.12 4287
44 PlugIn 스크롤 따라 다니는 배너 file kay 2013.09.14 4517
43 UI 특정 객체가 화면에 보이는지 여부 확인 kay 2015.12.14 4899
42 UI .on kay 2013.04.03 4919
41 UI 객체 초기화 kay 2013.04.04 4958
40 A to Z JQuery A to Z kay 2013.01.02 5114
39 UI Menu Bar kay 2013.02.06 5176
38 PlugIn Moodular - 회전,슬라이더, 터치 ,모자이크 kay 2013.05.04 5354
37 UI AutoCompleate - ( XML + Jquery ) kay 2013.03.08 5540
36 PlugIn Tree 메뉴만들기 1 file kay 2013.08.14 5651
35 etc 1.9x 버전 $.browser 삭제 대체 사용 2 kay 2013.04.26 5661
Board Pagination Prev 1 2 3 Next
/ 3