从" showOtherMonths" clickables(datepicker)

时间:2015-12-14 10:50:51

标签: jquery-ui jquery-ui-datepicker

默认情况下,当前月份结束后或当前月份开始之前显示的天数将被禁用且无法点击。

enter image description here

我需要像当月的其他日子一样点击它们

Jsfiddle:

$(function() {
  $( "#datepicker" ).datepicker({
    showOtherMonths: true
  });
}); 

https://jsfiddle.net/w2x005e6/

非常感谢您的帮助

1 个答案:

答案 0 :(得分:0)

您可以将selectOtherMonths选项设置为true,如documentation中所示。代码:

$(function() {
  $( "#datepicker" ).datepicker({
    showOtherMonths: true,
    selectOtherMonths: true
  });
});