0

可以在 onSelect 委托中重置 maxdate 属性吗?

如果我能做这样的事情就完美了:

 $(".date-picker").datepicker({

        maxDate: someDate,

        onSelect: function (date) {

            if(somecondition is true) {
               maxDate = someotherDate;
            }

            //some other functionality goes here, 
        }
    });
4

1 回答 1

1

你应该能够做到这一点:

$('.date-picker').datepicker('option', 'maxDate', [value]);

要重置原始值,您需要将该值存储在某处,并在适当的地方简单地使用该原始值重用上述代码。

于 2012-05-08T18:25:01.040 回答