我有一个日历,当您单击文本框时会弹出。我已经处理了一年,我不想在日期选择器日历中显示一年。你能建议一下吗?在jsbin中有代码。
$(document).ready(function(){
$(".monthPicker").datepicker({
dateFormat: 'mm',
changeMonth: true,
changeYear: true,
showButtonPanel: true,
onClose: function(dateText, inst) {
var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
$(this).val($.datepicker.formatDate('m', new Date(year, month, 1)));
}
});
$(".monthPicker").focus(function () {
$(".ui-datepicker-calendar").hide();
$("#ui-datepicker-div").position({
my: "center top",
at: "center bottom",
of: $(this)
});
});
});