2016-09-15 27 views
0

私は日付を表示するためのブートストラップ日付ピッカーコントロールを使用しています。私は日付ピッカーで前の日付を隠したい。どうやってするの? [方法のブートストラップ日付ピッカーの前の日付を非表示にするにはどうすればよいですか?

+2

http://stackoverflow.com/questions/16123056/bootstrap-datepicker-disabling-past-dates-without-current-date – Farhan

+0

可能な重複Bootstrap Datepickerで選択可能な日付範囲を制限するには?](http://stackoverflow.com/questions/11933173/how-to-restrict-the-selectable-date-ranges-in-bootstrap-datepicker) –

答えて

0

使用この

var date = new Date(); 
date.setDate(date.getDate()-1); 

$('#sandbox-container input').datepicker({ 
    autoclose: true, 
    startDate: date 
}); 

JSFiddle

関連する問題