gpt4 book ai didi

javascript - 如何在 html 表中找到与字符串有效匹配的某些行?

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

我在 html 页面中显示一个表格,并在用户单击时隐藏某些行。我隐藏与字符串匹配的行。我就是这样做的:

$("#table").find("tr:not(:has(th))").each(function (index) {
if($(this).text().indexOf("My String") <0 ) {
$(this).hide();
}else {
$(this).show();
}
});

这工作正常,但我想知道是否有比在表中的每一行中进行字符串比较更智能/更有效的方法

最佳答案

$.each($(".table tbody").find("tr"), function () {                              

if ($(this).text().replace(/\s+/g, '').indexOf(searchthis.replace(/\s+/g, '')) == -1)
$(this).hide();
else
$(this).show();});

这里搜索这将是您要搜索的文本

关于javascript - 如何在 html 表中找到与字符串有效匹配的某些行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23110695/

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