我有这个 jQuery 选择器:
'table tbody tr td:first-of-type'
如何从 $(this) 为同一行构造单元格选择器?我需要检查
$(document).on('click','table tbody tr td:first-of-type',function()
{
if ( $('table tbody tr td:nth-child(2)').text() != "" ) // for the same row !!
//do something
else
//do something else
}
额外的问题:我应该避免使用像 nth-child() 这样的 CSS3 选择器并使用像 eq() 这样的 jquery 选择器吗?