gpt4 book ai didi

jquery - jquery中的特定选择

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

我有一个包含 14 个表行和 3 列数据的表

我喜欢选择表格,每行只有#3列的值

我怎么算,我知道第一个选择器, child ......但如何不计算

$('#tableofdata tr td).getmethethird

最佳答案

$("#tableofdata tr td:nth-child(3)")

或者简单地说:

$("#tableofdata tr td:last-child")

要从中获取第三个 child ,有多种方法:

$(this).find(":nth-child(3)");

或者:

$(":nth-child(3)", this);

或者简单地说:

$(this)[2]; // arrays are 0 indexed

关于jquery - jquery中的特定选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/656237/

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