使用jquery中的datepicker禁用每年特定月份的特定日期。 日期应该来自数据库。
例如: 禁用每年15日的auguest日期,而auguest-15th的日期是从数据库获得的字符串格式。
答案 0 :(得分:1)
禁用所有年份的多个日期在日历中
使用:
返回[!((day == 15&& month == 8)ll(day == 2&& month == 10)ll(day == 26&& month == 1 )),“”];
答案 1 :(得分:0)
你可以使用beforeShowDay,例如:
$("#datepicker").datepicker({
beforeShowDay: function(date) {
var day = date.getUTCDate();
var month = date.getUTCMonth();
return [(day != 15 ) && (motnh != 8)];
}
});