我有一些行和列的 HTMLTable。我在单击时将一个函数绑定到该表的单元格。在此函数中,我需要获取此选定行中第一个单元格的值。我有以下内容:
$(this).parent().children()
gives me object with 4 HTMLTableCellElement like on the picture
我需要获取包含 [0] 元素的 innerHTML 的文本:
如何获取此文本?
If I use $(this).parent().children('0').innerHTML it gives me "undefined"