试图获取表格的tr秒td值但不起作用。我认为最接近的在角6中不起作用。我们可以为角6写任何其他方法吗?如果有人知道,请帮忙找到解决方案。
let target = e.originalEvent.toElement.closest('tr');
if (target && target.id) {
let td = target.querySelector('td:nth-child(2)');
if (td) {
console.log("This row ID value is ="+ td.value )
}
}