gpt4 book ai didi

javascript - 查找具有特定单元格值的行

转载 作者:行者123 更新时间:2023-11-28 02:00:07 24 4
gpt4 key购买 nike

我有一个函数可以在 html 表中找到第一列包含特定值的行...

$('#table tr').find('td:eq(0):contains(' + value + ')').parent();

我遇到的问题是它返回第 0 列中数字为 1 的所有行,而不仅仅是数字为 1 的行。(即 1、15、21 等。)

是否有与此搜索的“包含”部分等效的“等于”或其他某种方式?我好像找不到。

最佳答案

最简单的是使用 filter :

$('#table tr').filter(function(){
return $.trim($('td', this).eq(0).text())=="1";
});

Demonstration

关于javascript - 查找具有特定单元格值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14439396/

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