인풋에 달력넣기
페이지 정보
본문
폴더에 파일을 넣고 로드시킵니다.
<link rel="stylesheet" href="<?php echo G5_PLUGIN_URL ?>/jquery-ui/jquery-ui.css" type="text/css" media="all" />
<script src="<?php echo G5_PLUGIN_URL ?>/jquery-ui/jquery-ui.min.js" type="text/javascript"></script>
띄우고자 하는 인풋의 선택자를 넣고 스크립트를 넣습니다, <script>
$(function() {
$( "#t_start, #t_end, #t_start1, #t_end1, #date, .date ").datepicker({
dateFormat: 'yy-mm-dd',
prevText: '이전 달',
nextText: '다음 달',
changeYear: true,
changeMonth: true,
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: '년',
//종료일 제한
yearRange: 'c-10:c+0',
minDate: '-180MM',
maxDate: '+12M'
});
});
</script>
등록된 댓글이 없습니다.