2014. 3. 21. 11:41ㆍ프로그래밍/Javascript & JQuery
1. jQuery datepicker
<script src='http://code.jquery.com/jquery-1.9.1.js' type='text/javascript'></script>
<script src='http://code.jquery.com/ui/1.10.4/jquery-ui.js' type='text/javascript'></script>
<link rel='stylesheet' href='//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css'>
$(function(){ //jquery 달력 노출
$("#date").datepicker({
monthNamesShort: ['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월'],
dayNamesMin:["일","월","화","수","목","금","토"],
changeMonth: true, //달력 셀렉트 박스 유무
changeYear: true, //년 셀렉트 박스 유무
buttonImageOnly : true,
showOn: 'both', //버튼노출
buttonImage : "../images/button/butt_calender.gif",
dateFormat: "yy-mm-dd", //날짜 출력 형식
});
});
script 끝
html
<input type="text" id="date" />
아래와 같이 표현된다~
'프로그래밍 > Javascript & JQuery' 카테고리의 다른 글
[Javascript] input 에 숫자만 입력받기 (0) | 2014.04.18 |
---|---|
[jQuery] jQuery readyOnly disabled 속성 주기 (0) | 2014.04.14 |
[Javascript] navigator.systemLanguage 크롬에서 사용하기 (0) | 2014.03.20 |
[jQuery] Drag Event (0) | 2014.03.07 |
[jQuery]자동 완성 기능! (0) | 2014.03.07 |