gpt4 book ai didi

jquery - 使用 jquery 按类名查找 HTML 表格行

转载 作者:行者123 更新时间:2023-12-01 04:58:50 27 4
gpt4 key购买 nike

在删除任何 HTML 表的行后,我使用以下代码来保持序列号与序列保持一致。

 $("#trid_"+a_href).remove();

$("tr").each(function (index) {
if(index != 0) {
$(this).find("td:first").html(index + "");
}
});

代码工作正常,但问题是它显示表中所有行的序列号。但我只想在 <tr class="products"> 的行中显示

我的猜测是,要解决这个问题我必须找到 class="products"在tr中,所以我尝试了下面的代码,但是这次代码根本不起作用。

$("#trid_"+a_href).remove();

$(".products tr").each(function (index) {
if(index != 0) {
$(this).find("td:first").html(index + "");
}
});

你能帮我解决这个问题吗?谢谢

编辑

我的整个代码太大了。所以我上传了脚本here

谢谢:)

最佳答案

正确的选择器是:

$("tr.products").each ...

".products tr" 选择所有 tr 元素,这些元素是具有“products”类的任何节点的后代

"tr.products"(tr.poducts 之间没有空格)选择所有具有“products”类的 tr 节点(这就是你想要的)

"tr .products" 将选择所有具有类“.products”的元素,它们是 tr 节点的后代

关于jquery - 使用 jquery 按类名查找 HTML 表格行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12172742/

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