gpt4 book ai didi

javascript - 如何从行的特定列获取文本?

转载 作者:行者123 更新时间:2023-11-28 19:52:03 24 4
gpt4 key购买 nike

在下面的代码中,我可以访问 html 表中的每一行。

$("#table").find("tr:not(:has(th))").each(function (index) {                                                                                            
$(this) --> is the row
});

但是在函数内部如何访问特定列的文本?

最佳答案

您可以通过多种方式访问​​这些列,一种可能的解决方案是,

var tds = $(this).children('td');
tds.eq(0) // 1st one
tds.eq(1) // 2nd one
tds.eq(n) // nth one

您可以使用 jquery 的 .text() 函数访问其文本,

console.log(tds.eq(0).text());

关于javascript - 如何从行的特定列获取文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23270380/

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