gpt4 book ai didi

jquery - 如何在 jQuery 中选择同一行的不同单元格?

转载 作者:行者123 更新时间:2023-12-01 02:56:52 24 4
gpt4 key购买 nike

我有这个 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 选择器吗?

最佳答案

只需找到最接近的tr

$(this).closest("tr")

要选择一个td,请使用链接到它的.find():

$(this).closest("tr").find("td") //and whatever criteria you need

关于jquery - 如何在 jQuery 中选择同一行的不同单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19231904/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com