我正在使用 jQuery 运行我的 HTML 文件以收集元素。然后,我想对找到的每个元素执行 jQuery 操作。这是我到目前为止所拥有的,但它不起作用,因为我不知道如何存储每个方法中的 jQuery 元素。有人可以帮忙吗?
var foundElems = [];
$('#some-container .some-class').each( function(index) {
//filter $(this)
//store $(this)
foundElems.push($(this));
});
$('#some-container2 .some-class2').each( function(index) {
//filter $(this)
//store $(this)
foundElems.push($(this));
});
//do this again for many containers....
//then call some jQuery function on each element of that collection
foundElems.fadeOut('slow');