在jquery datepicker中更改周末日期的字体颜色

时间:2010-12-14 13:48:09

标签: jquery html css jquery-ui jquery-ui-datepicker

是否可以更改jquery日历中周末日期的字体颜色?我尝试使用类ui-datepicker-week-end,但它只改变了Sun和Sat的字体颜色。我想要的是改变落在太阳和坐着的日子的颜色。

1 个答案:

答案 0 :(得分:7)

您的选择器需要更多一些特异性,因为ui-datepicker-week-end位于<td>,但<a>内部有ui-state-default,如下所示:

.ui-datepicker-week-end, .ui-datepicker-week-end a.ui-state-default {color:red;}

You can test it here。如果你很好奇,日间单元格的标记是这样的:

<td class="ui-datepicker-week-end">
  <a class="ui-state-default" href="#">DAY NUMBER</a>
</td>