gpt4 book ai didi

jQuery 获取表中单击的 tr 的第二个到第十个 td 的值。我已经有了第一个

转载 作者:行者123 更新时间:2023-12-01 06:51:53 27 4
gpt4 key购买 nike

                    $("#existcustomers tr").click(function () {
var td1 = $(this).children("td").first().text();
alert(td1);
});

我还需要 td2-td10 的值。我似乎不知道如何实现这一点。我尝试以相同的方式使用 .second() ,但这似乎破坏了编程。有谁知道以下 td 是如何实现的?

最佳答案

使用eq(index)可以轻松找到它。

$("#existcustomers tr").click(function () {
var td1 = $(this).children("td").first().text();
var td2 = $(this).find("td").eq(2).text();
var td10 = $(this).find("td").eq(10).text();
alert(td1 + "-" + td2 + "-" + td10);
});

获取 td2 - td10 范围的值:

$("#existcustomers tr").click(function () {
var td1 = $(this).children("td").first().text();
var result = "";
for(var i=2; i<=10; i++) {
result = result + " - " + $(this).find("td").eq(i).text();
}
alert(td1 + result);
});

关于jQuery 获取表中单击的 tr 的第二个到第十个 td 的值。我已经有了第一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13759702/

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