如何选择表格的tr秒td值进入角度6

时间:2019-12-20 11:06:00

标签: javascript typescript angular6

试图获取表格的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 )
            }  
  }

0 个答案:

没有答案