gpt4 book ai didi

jquery - 传递 jQuery.show() 和 jQuery.hide() 作为要应用于元素的参数

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

正如标题所示,我想将 show() 和 hide() jQuery 函数作为另一个函数中的参数传递。

function applyActionOnClass(attr, action) {
$('#salesonhold_table tr').each(function () {
if ($(this).attr('status') == attr)
$(this).action;
});
}

这是我调用我的applyActionOnClass的时候功能:

$(document).on('change', '.checkboxes', function () {
var attr = $(this).val();
if ($(this).is(':checked'))
applyActionOnClass(attr, show());
else
applyActionOnClass(attr, hide());
});

为了稍微解释一下这样做的目的,我有一个表及其每个 <tr>有一个status使它们彼此不同的属性。我在表格顶部有两个复选框,每个可能的复选框 status值,我想隐藏/显示相应的 <tr>当复选框被触发时。

触发器和东西工作正常,但是当涉及到$(this).action;时它说hide is not defined 。知道我在那里做错了什么吗?

非常感谢!

最佳答案

另一个解决方案是像这样改变你的功能

function applyActionOnClass(attr, action) {
$('#salesonhold_table tr').each(function () {
if ($(this).attr('status') == attr)
$(this)[action]();
});
}

注意$(this)[action]();你可以在这里看到它的工作http://jsfiddle.net/t6rEE/作为概念证明(我尝试了 hideshow)

关于jquery - 传递 jQuery.show() 和 jQuery.hide() 作为要应用于元素的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10598587/

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