目前,datepicker每页只创建1个元素,所有的“datepicker”输入共享,因此为什么链接的问题的答案不起作用. beforeShow事件不允许使用.addClass()或.css()编辑datepicker元素(因为元素结构在显示时从datepicker脚本中刷新).
为了解决这个问题,我发现输入元素的焦点事件似乎在显示datepicker之后运行代码.这是一个令人沮丧的问题的简单的解决方法.
这是我的代码:
$(function() {
$('.month-picker').datepicker( {
changeMonth: true,changeYear: true,showButtonPanel: true,dateFormat: 'MM yy',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).datepicker('setDate',new Date(year,month,1));
},beforeShow : function(input,inst) {
if ((datestr = $(this).val()).length > 0) {
year = datestr.substring(datestr.length-4,datestr.length);
month = jQuery.inArray(datestr.substring(0,datestr.length-5),$(this).datepicker('option','monthNames'));
$(this).datepicker('option','defaultDate',1));
$(this).datepicker('setDate',1));
}
}
});
$('.date-picker').datepicker();
$('.month-picker').focus(function () {
$('.ui-datepicker-calendar').addClass('hideDates');
});
});
.hideDates {
display: none;
}
Date:
End Month: