可以在onSelect委托中重置maxdate属性吗?
如果我可以这样做,那将是完美的:
$(".date-picker").datepicker({
maxDate: someDate,
onSelect: function (date) {
if(somecondition is true) {
maxDate = someotherDate;
}
//some other functionality goes here,
}
});
答案 0 :(得分:1)
你应该可以这样做:
$('.date-picker').datepicker('option', 'maxDate', [value]);
要重置原始值,您需要将该值存储在某处,只需将上述代码重新使用原始值即可。