gpt4 book ai didi

javascript - 使用 jquery 变量调用函数

转载 作者:行者123 更新时间:2023-11-30 07:33:46 27 4
gpt4 key购买 nike

如何使用变量直接选择类等?

var $tbody = $(".tbl-locations-body");

$(".tbl-locations-body a.collapse").hide();
$(".tbl-locations-body tr.child-row").hide();
$(".tbl-locations-body .container").first().hide();
$(".tbl-locations-body .tab-content").hide();

我想使用$tbody 来执行这些方法。语法是什么?

最佳答案

您可以使用 $tbody jQuery 对象中的 find() 方法。请注意,您也可以应用多个选择器来使调用成为一行:

var $tbody = $(".tbl-locations-body");
$tbody.find('a.collapse, tr.child-row, .container:first, .tab-content').hide();

关于javascript - 使用 jquery 变量调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41246428/

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