SOURCE
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.0/jquery-ui.js"></script>
<script>
$( function() {
$( ".date_picker" ).datepicker({
// 달력 설정
//showAnim: "slideDown",
//showOn: "button",
//buttonImage: "calendar.gif",
//buttonImageOnly: true,
//changeMonth: true, // 월을 바꿀 수 있는 셀렉트 박스를 표시한다.
//changeYear: true, // 년을 바꿀 수 있는 셀렉트 박스를 표시한다.
//showMonthAfterYear: true,
// 달력 세팅
dateFormat: 'yy-mm-dd',
yearSuffix: '년',
//prevText: '이전 달',
//nextText: '다음 달',
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: ['일','월','화','수','목','금','토'],
// 달력 하단의 종료와 오늘 버튼 Show
showButtonPanel: true,
//closeText : 'Close',
//currentText : 'Today',
//minDate: -20, // 최소 날짜 지정
// maxDate: "+1M +10D" // 최대 날짜 지정
});
} );
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
</html>