gpt4 book ai didi

jquery - 如果单击某行的子元素,如何获取该行的 id 属性?

转载 作者:行者123 更新时间:2023-12-01 06:40:47 24 4
gpt4 key购买 nike

如何返回链接所在行的 id 属性?我尝试了不同的变体,但我能得到的最好的是“未定义”......

html 看起来像这样:

<tr id="30">
<td>Parker</td>
<td><a href="#" id="id783900" class="section-id">Select</a></td>
</tr>

我尝试过的事情之一是:

$("a.section-id").click(function() {
var parenttr = $(this).parent().parent().attr("id");
alert(parenttr);
});

我也尝试过这个:

$("a.section-id").click(function() {
var parenttr = $(this).parent('tr').attr("id");
alert(parenttr);
});

最佳答案

尝试:

$(this).closest('tr').attr('id');

关于jquery - 如果单击某行的子元素,如何获取该行的 id 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4504967/

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