我有一些用作容器的 div,我想遍历它们,然后遍历其中的项目。
所以不是$('.stackContainer .stackItem').each(
这样的:
// setup stacks
$('.stackContainer').each(function(containerIndex) {
//console.log($(this));
console.log(containerIndex);
$(this).('.stackItem').each(function(itemIndex) {
console.log(itemIndex);
}
});
只有这样才能工作。这怎么可能?