经过一番研究,我似乎找不到任何信息来检查你是否处于循环的末尾。我特别想知道您是否可以使用 jQuery 中的 .each() 进行检查。我想要实现的是
$("tr#row"+formIdentifier).find('td').each(function (){
if (last_item_in_loop){
alert("this is the last item in the loop");
}
});
到目前为止,它循环通过了,我只想能够提醒用户他们在最后一项。任何帮助将不胜感激。先感谢您!