我使用XDSoft的jQuery Datetimepicker插件:http://xdsoft.net/jqplugins/datetimepicker/,https://github.com/xdan/datetimepicker
我显示了压光机。这是我的代码:
$("#reservation-date").datetimepicker({
lang:"fr",
format:"d/m/Y",
timepicker:false,
minDate: 0,
maxDate: maxDate,
scrollInput:false,
beforeShowDay: function(date, inst) {
var string = jQuery.datepicker.formatDate('m-d-yy', date);
return [disableddates.indexOf(string) == -1, ((datesInPromo.indexOf(string) != -1) && (disableddates.indexOf(string) == -1))?"promo_day":"" ]
}
});
我的问题:当我在前端单击一个月或一年时,select
选项不会消失(顺便说一句,日历正确地考虑了这些更改)。我希望与普通选择框具有相同的行为,即即,以使其在用户选择(单击)选项时消失。
我需要进行哪些更改或添加什么?注意:在第一段的末尾提供了Github链接。