我的HTML代碼:如何更改表格行的背景?
<table class="tableclass">
<th>id</th><th>Name</th><th>Value</th>
<tr>
<td>001</td>
<td>Name 001</td>
<td>This is some value for Key 001</td>
</tr>
<tr>
<td>002</td>
<td>Name 002</td>
<td>This is some value for Key 002</td>
</tr>
<tr>
<td>003</td>
<td>Name 003</td>
<td>This is some value for Key 003</td>
</tr>
<tr>
<td>004</td>
<td>Name 004</td>
<td>This is some value for Key 004</td>
</tr>
</table>
我能夠顯示與CSS的替代顏色:
tr:nth-child(even) {
background-color: #CCD1D1;
}
和我的jQuery的突出單擊錶行:
$(".tableclass tr").click(function(){
$(this).addClass("rowHighlight");
});
類.rowHighlight{background-color:#AEB6BF;}
With this code Im not able t o更改背景爲css的奇數行的背景顏色。我希望能夠更改該行的背景。
我該怎麼做?
謝謝。
添加背景色爲TD而不是TR所以,.rowHighlight TD {背景顏色:#AEB6BF ;} –
謝謝堆..它的工作! – Somename
更新了邊框問題,你可以根據你的需要調整它 –