2

我正在尝试将 css 添加到作为fullcalender一部分的表中的“td”中

日单元格添加了 fc-day0 到 fc-day41
td 元素的类,如下所示:

<td class="fc-mon fc-widget-content fc-day1">

我试过以下:

$("td").filter("fc-day1")
       .css("background", "red");

$("td").find("fc-day1")
       .css("background", "red");

$("td").find($('td[class*=".fc-day1"]'))
       .css("background", "red");

感谢您的帮助 =)

4

3 回答 3

1

TD以类为目标,fc-day1只需执行以下操作:

$("td.fc-day1").css("background", "red");

小提琴

于 2012-07-27T11:24:07.190 回答
1

如果您想过滤掉您的 td 集合并找到所有拥有 fc-day1 类的人,则使用带有 css 选择器的过滤器:

$("td").filter(".fc-day1")
    .css("background", "red");
于 2012-07-27T11:26:47.060 回答
0

你不需要jquery。

在文件 css 中:

<style>
table td .fc-day1{
  background:red;
}
</style>

问候

于 2012-07-27T11:27:25.577 回答