修改:已在下方解答。
我想有一个HTML表,每行之间有隐藏的行,有关顶级行的更多信息。单击第一列中的展开/折叠图像链接时,隐藏行的可见性将从display:none切换;显示:table-row;。我有一段时间没有编写JavaScript,需要能够在JavaScript中严格执行此操作,并且不能使用jQuery toggle()方法。
如何使用JavaScript查找带有class =" subRow"的兄弟姐妹? with class =" parentRow"按钮位于表格中,然后切换该兄弟行的可见性?
<table style="width:50%">
<caption>Test Table</caption>
<thead>
<tr align="center">
<th><span class="offscreen">State Icon</span></th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>
</thead>
<tbody>
<tr align="center" class="parentRow">
<td><a href="#" onclick="toggleRow();"><img alt="Expand row" height="20px;" src="expand.png"></a></td>
<td>test cell</td>
<td>test cell</td>
<td>test cell</td>
<td>test cell</td>
</tr>
<tr style="display: none;" class="subRow">
<td colspan="5"><p>Lorem ipsum dolor sit amet...</p></td>
</tr>
....
</tbody>
</table>
.offscreen {
position: absolute;
left: -1000px;
top: 0px;
overflow:hidden;
width:0;
}
.subRow {
background-color: #CFCFCF;
}
function toggleRow() {
var rows = document.getElementsByClassName("parentRow").nextSibling;
rows.style.display = rows.style.display == "none" ? "table-row" : "none";
}
答案 0 :(得分:9)
将您的事件处理程序引用到使用this
<td><a href="#" onclick="toggleRow(this);"><img alt="Expand row" height="20px;" src="expand.png"></a></td>
然后按如下方式更新你的toggleRow函数:
function toggleRow(e){
var subRow = e.parentNode.parentNode.nextElementSibling;
subRow.style.display = subRow.style.display === 'none' ? 'table-row' : 'none';
}
您可能需要考虑创建一个通用函数来向上导航DOM树(这样,当您/更改HTML时,此函数不会中断)。
答案 1 :(得分:0)
使用id属性来获取元素而不是类,并在其id中为任何行赋予唯一的数字,以使它们不同。
<tr style="display: none;" class="subRow" id="subRow1">
.
.
.
<tr style="display: none;" class="subRow" id="subRow2">
.
.
<tr style="display: none;" class="subRow" id="subRow3">
答案 2 :(得分:0)
这对我有用:
function toggleRow() {
var row = document.getElementsByClassName("parentRow")[0];
var next = row.parentNode.rows[ row.rowIndex ];
next.style.display = next.style.display == "none" ? "table-row" : "none";
}