现在我有以下 Jquery,当单击表格行时,它会关闭它下面的行。
<script type="text/javascript">
$(function () {
$("tr.spaceUnder").hide();
$('tr:not(.spaceUnder)').click(function () {
$(this).nextUntil('tr:not(.spaceUnder)').toggle();
});
});
现在我想要的是当我单击切换其下的行的行时,显示一个打开/关闭图标或 +/- 任何东西。
这就是上面有开关的行的样子。
<tr class="countryRow categoryHeader">
<td colspan="3" class="">
<span class="listItemHeader">
<%#((Item)Container.DataItem)["Name"]%>
</span>
</td>
<td>
<a href="#" style="float: right;"><img width="20" src="/Images/sBackTopPic.png"></a>
</td>
</tr>
因此,在切换时,我想更改行中第二个 td 中 a href 的 css 类,因此在初始加载时显示关闭图标,然后单击打开图标..然后再次单击关闭图标。所以我想知道如何使用我当前的切换逻辑在我的 href 上添加 css 类。