我想使用bootstrap datepicker並將選定日期與knockoutjs綁定。將knockoutjs與bootstrap datepicker綁定
使用的日期選擇器功能:
$(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/
發現了另一種解決這個問題。 http://stackoverflow.com/questions/14782728/object-object-object-has-no-method-when-using-bootstrap-datepicker – Gericke