我有一个关于我很久以前创建的表的问题。
我有一张桌子,可排序的列有蓝色背景。我想在这个表中添加另一个类,比如“sortable-table-white-bg”,当它添加到表中时会删除蓝色背景/将白色背景添加到可排序的列中。
我的表格代码如下:
<table cellspacing="0" cellpadding="0" border="0" class="data-table sortable-table "
summary="JavaScript enabled sortable data table example">
<caption><em>Sortable data table</em></caption>
<thead>
<tr>
<th scope="col">Header 1</th>
<th scope="col" class="abc-sort">
<a href="#sort">
<span>Header 2</span>
<span class="abc-icon"> </span>
</a>
</th>
<th scope="col" class="abc-numeric abc-sort">
<a href="#sort">
<span>Header 3</span>
<span class="abc-icon"> </span>
</a>
</th>
<th scope="col" class="abc-date abc-sort">
<a href="#sort">
<span>Header 4</span>
<span class="abc-icon"> </span>
</a>
</th>
<th scope="col">Header 5</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" class="abc-table-row">This is a sample text</th>
<td>Duis autem</td>
<td class="abc-numeric">$1,234.56</td>
<td>12 Dec 1999</td>
<td>Ipsum dolor</td>
</tr>
<tr>
<th scope="row" class="abc-table-row">This is a sample text</th>
<td>Quis nostrud</td>
<td class="abc-numeric">$789.10</td>
<td>25 Jul 2007</td>
<td>Adipscing</td>
</tr>
<tr>
<th scope="row" class="abc-table-row">This is a sample text</th>
<td>Magna diam</td>
<td class="abc-numeric">$1,112.13</td>
<td>01 Jan 2000</td>
<td>Sed diam</td>
</tr>
</tbody>
</table>
表格的 CSS 是:
table.data-table.sortable-table td.accent{
background-color: #eeeeee;
}
table.data-table td.abc-sort-column{
background:url(/i/v17/table_sort_col_background.gif) repeat-x 0px 0px ;
}
table.data-table tbody tr:first-child td.abc-sort-column{
background: url(/i/v17/table_sort_col_background_child.gif) repeat 0 0 !important;
}
当我们将“sortable-table-white-bg”类添加到表中时,我将 CSS 更改为
table.data-table.sortable-table td.accent{
background-color: #eeeeee;
}
table.sortable-table-white-bg td.abc-sort-column{
background-color: #ffffff;
}
table.data-table td.abc-sort-column{
background:url(/i/v17/table_sort_col_background.gif) repeat-x 0px 0px ;
}
table.sortable-table-white-bg tbody tr:first-child td.abc-sort-column{
background-color: #ffffff ;
}
table.data-table tbody tr:first-child td.abc-sort-column{
background: url(/i/v17/table_sort_col_background_child.gif) repeat 0 0 !important;
}
什么都没有改变...我仍然看到相同的蓝色背景。
请帮我解决这个问题。
提前致谢