Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは私のコードです:
$('#dp').datepicker(); $('#dp').datepicker( "setDate", "05/01/2013" ); $('#dp').datepicker("option", "minDate", "07/01/2013" );
現在、日付ピッカーを開くと、2013 年 7 月がminDate表示されます。これは .
minDate
setDate1ヶ月前まで可能minDateですか?
setDate
これを試して:
var d = $.datepicker.parseDate("mm/dd/yy", "07/01/2013"); $('#dp').datepicker({ beforeShowDay: function (date) { return [date >= d, '']; } }); $('#dp').datepicker("setDate", "05/01/2013");
jsFiddle の例