默认情况下,当前月份结束后或当前月份开始之前显示的天数将被禁用且无法点击。
我需要像当月的其他日子一样点击它们
Jsfiddle:
$(function() {
$( "#datepicker" ).datepicker({
showOtherMonths: true
});
});
https://jsfiddle.net/w2x005e6/
非常感谢您的帮助
答案 0 :(得分:0)
您可以将selectOtherMonths
选项设置为true,如documentation中所示。代码:
$(function() {
$( "#datepicker" ).datepicker({
showOtherMonths: true,
selectOtherMonths: true
});
});