使用 Javascript 获取 <table> 中 <tbody> 内的 <td>
2018-06-10
484
1个回答
首先从表中获取
tr
列表并转换为数组:
[...document.querySelector('table').querySelectorAll('tr')]
// then forEach over the array to conditionally hide the row
.forEach(tr => {
// select the element with class 'status' check if txt is not UP
const el = tr.querySelector('.status');
if (!el || el.textContent.trim() !== 'UP') {
tr.style.display = 'none'; // hide tr
}
});
Jared Smith
2018-06-10