我正在关注问题的现有答案以及API,这就是我所拥有的:
$("#datepicker").datepicker();
$("#datepicker").datepicker('setDate', new Date());
$('button').on('click', function() {
$("#datepicker").datepicker('options', 'minDate', new Date());
});
<link href="https://code.jquery.com/ui/1.11.2/themes/black-tie/jquery-ui.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>
<script src="https://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>
<input id="datepicker" type="text">
<button id="add_30">Set minDate</button>
正如您在控制台上看到的那样,它不起作用,并且给出了非常一般的错误。我究竟做错了什么?我想在初始化之后使用Date对象作为参数动态设置minDate选项。
答案 0 :(得分:1)