我们如何在月份变化时禁用jquery datepicker日期。 我目前正在使用beforeShowDay函数禁用它。
beforeShowDay: function(date){
var string = jQuery.datepicker.formatDate('yy-mm-dd', date);
return [ unavailableDates.indexOf(string) == -1 ]
}
现在我想禁用用户点击下个月的日期.. 有什么想法吗?
答案 0 :(得分:0)
The following example disables dates 14 March 2013 thru 16 March 2013.
var array = ["2013-03-14","2013-03-15","2013-03-16"]
$('input').datepicker({
beforeShowDay: function(date){
var string = jQuery.datepicker.formatDate('yy-mm-dd', date);
return [ array.indexOf(string) == -1 ]
}
});