我有一个循环
$(".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);
});
令我失望的是,我无法让它工作......这只是愚蠢的语义?有人可以向我解释为什么吗?