我正在编写代码,也许我的方法在“for”循环中工作是错误的。就这个:
for(var index = 0; index < $('div.parent').find('div.child').length; index++){
var element[index] = $('div.parent').find('div.child').eq(index);
// some code
}
代码应如下所示:
for(var index = 0; index < $('div.parent').find('div.child').length; index++){
var element1 = $('div.parent').find('div.child').eq(1);
// some code with element1
var element2 = $('div.parent').find('div.child').eq(2);
// some code with element2
}
感谢您的任何建议。