gpt4 book ai didi

jquery - 获取表中的td元素

转载 作者:行者123 更新时间:2023-12-03 23:06:34 24 4
gpt4 key购买 nike

我想单击表格中的 anchor 标记(a href)并提取下一个单元格(或该行中的特定单元格)的内容

$(".clCode").click(function(){
alert( $(this).text() );
return false;
});

<table>
<tr>
<td class='clCode'><a href="#">Select</a></td><td>Code123</td>
</tr><tr>
<td class='clCode'><a href="#">Select</a</td><td>Code543</td>
</tr><tr>
<td class='clCode'><a href="#">Select</a</td><td>Code987</td>
</tr>
</table>

最佳答案

$(".clCode").click(function(){
alert( $(this).parent().next().text() );
return false;
});

这应该得到下一个 td。如果有更多 td,并且您想要获取第一个以外的其他内容,您还可以将选择器传递给 next()。

$(".clCode").click(function(){
alert( $(this).parent().next(':last').text() );
return false;
});

关于jquery - 获取表中的td元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2083648/

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