<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/themes/base/jquery-ui.css">
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js"></script>
<script type="text/javascript">
var datepicker_option = {
dateFormat: 'yy/mm/dd',
dayNamesMin: ['日', '月', '火', '水', '木', '金', '土'],
monthNames: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
showMonthAfterYear: true,
yearSuffix: '年',
changeYear: true,
showAnim: 'fadeIn',
yearRange: "c-70:c"
}
$(function() {
$( "#datepicker" ).datepicker(datepicker_option);
$( "#datetDialog" ).click(
function() {
$( "#datepicker" ).datepicker(
"dialog",
$("#datepicker").val(),
function(sdate) {
$("#datepicker").val( sdate );
},
datepicker_option
);
}
);
});
</script>
Date: <input type="text" id="datepicker">
<br />
<input
id="datetDialog"
type="button"
value="dialog">