我不得不为 jQuery datepicker 对我的 CSS 进行一些修改。不幸的是,在此过程中,我设法突出了每个月的第一天。我需要寻找什么房产?我必须从今天的日期中删除样式以执行其他 CSS。我已经能够做到。但我不想要这种副作用......
这是我添加的行:
.ui-datepicker-current .ui-datepicker-today .ui-state-highlight { background: transparent !important;}
我不得不为 jQuery datepicker 对我的 CSS 进行一些修改。不幸的是,在此过程中,我设法突出了每个月的第一天。我需要寻找什么房产?我必须从今天的日期中删除样式以执行其他 CSS。我已经能够做到。但我不想要这种副作用......
这是我添加的行:
.ui-datepicker-current .ui-datepicker-today .ui-state-highlight { background: transparent !important;}
您可以beforeShowDay
为此使用事件。此事件的主要功能是启用或禁用日历上的特定日期。但是,它也可用于为特定日期分配特殊类别:
$(".datepicker").datepicker({
beforeShowDay: function(date) {
return [true, date.getDate() == 1 ? "first-class" : ""];
}
});