document.querySelectorAll('button').forEach(bttn=>bttn.addEventListener('click',function(e){
/* create an array from the nodelist so that `indexOf` can be used */
let col=[...document.querySelectorAll('tr')];
/* find the parent table row of the invoking button */
let tr=this.parentNode.parentNode;
/* find which table row in the array was the event source */
let index=col.indexOf( tr ) + 1;
/* process the next N records/rows */
for( let i=index; i < index + 2; i++ ){
col[i].style.display=col[i].style.display=='table-row' || col[i].style.display=='' ? 'none' : 'table-row'
}
}))
3条答案
按热度按时间izkcnapc1#
这里实现您想要的功能的关键是使用
.nextUntil("tr:has(button)")
如:
字符串
Demo
px9o7tmv2#
使用
vanilla
JavaScript,你可以利用indexOf
方法来查找包含点击按钮的table-row元素的位置,然后在N
行上迭代并切换显示状态。t8e9dugd3#
此代码针对两个表行设置。它不适用于两个以上的行。只有2行;隐藏并显示.
for( let i=index; i < index + 2; i++ )
,其中应使用变量表示数字2。换句话说,必须提前确定有多少行会受到影响。