仅使用纯JavaScript:
如何单击指定的表格行,并更改所选行的背景颜色(对于本例,我们使用红色)。
然后,如果再次单击先前选择的同一行,则将其背景颜色更改回默认值(白色)。
下面是我的HTML:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Language" content="en-ca">
</head>
<body>
<table border="1" cellspacing="1" width="100%" id="table1">
<tr>
<th>Column1</th>
<th>Column2</th>
<th>Column3</th>
<th>Column4</th>
<th>Column5</th>
</tr>
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
</table>
</body>
</html>
3条答案
按热度按时间qacovj5a1#
jsFiddle Example
w6mmgewl2#
像这样的东西在你的树上会起作用。
编辑:没有正确阅读您的问题。
这将起作用:
在你的TR:
ne5o7dgx3#
使用jQuery并查看http://jsfiddle.net/X2pJN/上的示例