jQuery - Select first cell of a given row?

2019-03-14 06:49发布

问题:

I have a table with images in one column. When I click the image, would like to get the text value of the first column in that row.

I can get the whole row with this:

var a = $(this).parents('tr').text();

However, I cannot isolate the first cell of the row.

I've tried

var a = $(this).parents('tr td:first').text();

But that just returns the first cell of the entire table.

Can anyone help me out?

Thanks.

回答1:

How about?

var a = $('td:first', $(this).parents('tr')).text();


回答2:

Here's another option:

var a = $(this).closest('tr').find('td:first').text();