gpt4 book ai didi

jquery - 利用td的Id如何找到对应tr的id?

转载 作者:行者123 更新时间:2023-12-01 07:30:40 25 4
gpt4 key购买 nike

我有 td 的 id,我想获取父 tr 的 id?我有以下代码

 $(".isActive").click(function() {
var checkBox_id = $(this).attr("id"); // id of checkbox inside td//
var $this = $('#' + checkBox);
var column_id = $this.parent().attr('id'); // id of td//
var row_id = ??? // get id or tr using above td
});

最佳答案

无需跟踪 ID 链 - jQuery 可以为您找到最接近的封闭表行:

$(".isActive").click(function() {
var row_id = $(this).closest('tr').attr('id');
});

关于jquery - 利用td的Id如何找到对应tr的id?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6412098/

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