<link rel="stylesheet" type="text/css" href="../js/jquery-ui.css">
<script type="text/javaScript" src="../js/jquery-3.3.1.min.js"></script>
<script type="text/javaScript" src="../js/jquery-ui.js"></script>
$(function() {
$("#datepicker").datepicker({
showMonthAfterYear:true,
monthNamesShort: ['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월'],
dayNamesMin: ['일','월','화','수','목','금','토'],
showAnimation: 'slider',
dateFormat: 'yy-mm-dd',
showOtherMonths: true,
selectOtherMonths: true,
changeMonth: true,
changeYear: true
});
});
참고사이트1 : https://blog.naver.com/nicecoding?Redirect=Log&logNo=220602709305
참고사이트2 : http://soyeonii.tistory.com/90
|
|