我正在用 ASP 开发一个项目,但我不习惯 Javascript 或 Jquery
我发现一些代码,如果我点击一行,它会改变颜色。
我现在想在单击一行时将显示更改为正常,然后在单击任何其他行时将其隐藏。
到目前为止我所拥有的
<table id="myTable" class="tablesorter">
<thead>
<tr>
<th>INFO</th>
</tr>
</thead>
<tbody>
<tr onclick="changeMe(this);">
<td>INFO</td>
<tr class="versionRow" style ="display:none">
<td>INFO</td>
</tr>
</tr>
</tbody>
</table>
还有我的改变颜色的脚本。
<script>
var whosChanged = null;
function changeMe(el) {
el.style.backgroundColor = "#00FF00";
el.style.color = "#000000";
if (whosChanged != null) {
whosChanged.style.backgroundColor = ""
whosChanged.style.color = ""
}
whosChanged = el;
}
</script>
当我点击它时,我只想能够显示带有类 versionRow 的行。
有什么想法或建议吗?谢谢你。