ブートストラップの日付ピッカーを使用し、選択した日付をノックアウト js にバインドしたいと考えています。
日付ピッカーを使用する関数:
$(function() {
// create the departure date
$('#depart-date').datepicker({
autoclose: true,
format: 'yyyy/mm/dd',
}).on('changeDate', function(ev) {
ConfigureReturnDate();
});
$('#return-date').datepicker({
autoclose: true,
format: 'yyyy/mm/dd',
startDate: $('#depart-date').val()
});
// Set the min date on page load
ConfigureReturnDate();
// Resets the min date of the return date
function ConfigureReturnDate() {
$('#return-date').datepicker('setStartDate', $('#depart-date').val());
}
});
これは私が使用したいフィドルですが、どうすればよいかわかりません。 http://jsfiddle.net/zNbUT/276/