我将尝试在这里让代码自己说话:我可以使用 if 条件来检查当前迭代之后是否还会有另一次迭代?
$('#%id% td').each(function(){
if(??????????){ // if there will be a next iteration
while($(this).height() == thisheight){
// do something here on this iteration, but only if there will be another.
}
}
});