gpt4 book ai didi

jquery - .find() 多个类在一个语句中带有变量

转载 作者:行者123 更新时间:2023-11-28 04:39:26 25 4
gpt4 key购买 nike

我有一个循环

$(".box").find('.video, .print, .web').closest('.box').each(function (index)
{
$(this).delay(100 * index).fadeIn(300);
});

这段代码工作得很好。但我经常调用这 3 个类,我想将它放入一个变量中。例如:

var resetBoxClass = ".print .web .video";

$(".box").find('resetBoxClass').closest('.box').each(function (index)
{
$(this).delay(100 * index).fadeIn(300);
});

令我失望的是,我无法让它工作......这只是愚蠢的语义?有人可以向我解释为什么吗?

最佳答案

缺少逗号 resetBoxClass = ".print, .web, .video"; & $(".box").find('resetBoxClass') 应该是 $(".box").find(resetBoxClass)

这会有所帮助,

休息如下:

var resetBoxClass = ".print, .web, .video";

$(".box").find(resetBoxClass).closest('.box').each(function (index)
{
$(this).delay(100 * index).fadeIn(300);
});

关于jquery - .find() 多个类在一个语句中带有变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11153747/

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