我对日期选择器有一种奇怪的行为,而不是所有计算机的重新生成, 从开始日期选择日期之后的问题,然后尝试从结束日期中选择,对于某些计算机,日期选择器中出现其他箭头图标。 附图。
现在问题没有为所有人重新制作,如果您在开始日期或结束日期获得minDate或maxDate相关的话,它也会重新生成
我已经在两台具有相同操作系统和浏览器版本的计算机上测试了该问题但是在其中一台计算机上再现了
var from = $(".from", container).datepicker({
defaultDate: defaultDate,
dateFormat: "dd-M-yy",
changeMonth: true,
numberOfMonths: 3,
showOn: "both",
buttonImage: "/resources/images/forms/calendar-regular.png",
buttonText: "Start Date",
minDate : minDate,
maxDate: -1,
onClose: function (selectedDate) {
$(".to", container).datepicker("option", "minDate", selectedDate);
if (!$(".to", container).val()) {
$(".to", container).datepicker('setDate', selectedDate);
}
}
});
var to = $(".to", container).datepicker({
defaultDate: defaultDate,
dateFormat: "dd-M-yy",
changeMonth: true,
numberOfMonths: 3,
showOn: "both",
buttonImage: "/resources/images/forms/calendar-regular.png",
buttonText: "End Date",
minDate: minDate,
maxDate: 0,
onClose: function (selectedDate) {
$(".from", container).datepicker("option", "maxDate", selectedDate);
}
});
},
我正在使用jquery-ui-1.9.1.js