gpt4 book ai didi

jquery - 在 Jquery 上触发函数

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

我有一个表格,我想过滤我的搜索结果。我得到了一些东西:http://jsfiddle.net/hzW2a/88/但它只能工作一次,这是因为我在文本框中输入了一个常量值。所以我不知道如何使用文本框中的新值再次触发该函数。

功能是这样的:

var tableRow = $("td").filter(function () {
var x = $('.search2').val();
return $(this).text() === x;
}).closest("tr");


$(".search").click(function() {
$('tr').not(tableRow).hide();
});

但是第一个函数只触发一次(...我猜)

顺便说一句:我是 jQuery 新手,我一直在混合其他示例中的代码,试图得到我想要的东西。谢谢。

最佳答案

$(".search").click(function() {
$('tr').show();

var tableRow = $("td").filter(function () {
var x = $('.search2').val();
return $(this).text().indexOf(x) > -1;
}).closest("tr");

$('tr').not(tableRow).hide();
});

DEMO

关于jquery - 在 Jquery 上触发函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41470723/

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