Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何设置列表视图以在单击链接、图像等时突出显示一行,但我只是想知道是否可以将其设置为在单击其任何单元格时突出显示一行,而不仅仅是在预定义控制。
那可能吗?
我的方法是设置每个的 onclick,<td>但不知道如何在单击另一个单元格时重置背景颜色。
<td>
您可以在客户端使用 Jquery:
$("#myTable tr").click( function () { $("#myTable tr").each(function () { $(this).removeClass("selected")}); $(this).addClass("selected"); });
一个例子小提琴:
http://jsfiddle.net/9pmcA/26/