有没有办法禁用日历中的所有日期?当前的日历构造为:
$('.date-picker-field').datepicker( { showOtherMonths: true, selectOtherMonths: true, changeMonth: true, changeYear: true, });
这将显示一个启用了所有日期的日历。我想显示所有日期都被禁用。
您可以使用beforeShowDay
method并返回带有false
值的数组:
$("#datepicker").datepicker({
beforeShowDay:function(date){
return [false, ''];
}
});