我在同一页面中有两个datetimePickers,我想根据第一个更改第二个datetimepicker的minDate。这是我的代码:
$(function() {
if ($("#p-from").length > 0) {
$('#p-from').datetimepicker();
}
if ($("#p-to").length > 0) {
$('#p-to').datetimepicker();
}
});
我用过
jquery.datetimepicker.full.min.js
答案 0 :(得分:1)
请检查:http://jsfiddle.net/tSrGx/28/
$(function () {
$("#from").datepicker({
changeMonth: true,
numberOfMonths: 1,
minDate: -0,
onClose: function (selectedDate) {
var date2 = $('#from').datepicker('getDate');
date2.setDate(date2.getDate() + 1);
$("#to").datepicker("option", "minDate", date2);
}
});
$("#to").datepicker({
changeMonth: true,
numberOfMonths: 1
});
});