
jQuery UI DatePicker??? ?? ?? ??
jQuery UI? DatePicker ????? ??? ??? ??? ? ?? ???? ?????. ?? ??? ??? ??? ?? ????? ?? ???? ?? ??? ??? ? ????.
???:
?? ????? "hackish " ??? ??? ?? ???? ????? ???? ?? ?? ??? ??? JavaScript ??? ???? ??? ?????. ?? ??? ????.
<html>
<head>
<script src="jquery.js"></script>
<script src="jquery-ui.min.js"></script>
<link rel="stylesheet" href="jquery-ui.css">
<script>
$(function() {
$('.date-picker').datepicker({
changeMonth: true,
changeYear: true,
showButtonPanel: true,
dateFormat: 'MM yy',
onClose: function(dateText, inst) {
$(this).datepicker('setDate', new Date(inst.selectedYear, inst.selectedMonth, 1));
}
});
});
</script>
<style>
.ui-datepicker-calendar {
display: none;
}
</style>
</head>
<body>
<label for="startDate">Date:</label>
<input name="startDate">
? ?? ??? ? ? ?? ?? ??? ????? ??? ??? ???????. onClose ??? ???? ??? ??? ??? ?? ??? ? ?? ?? ???? ?? ??? ?? ??? ????? ???.
??? ???:
??? ??? ?? ?? ?? ??? ???? ??? ???? ?? ??? ???? ??????. ??? ??? ? ??? ?? ??? ?? ???? ??? jQuery UI? _selectDay ???? ????? ????. ? ?? ??? ???? ??? ? ? ?? ??? ????? ?? ??? ?? ???? ??? ? ????.
? ??? jQuery UI DatePicker?? ?? ??? ???? ??? ??????? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!