gpt4 book ai didi

javascript - 使用 jquery $.each 时如何检查当前元素是否是最后一个元素

转载 作者:行者123 更新时间:2023-11-30 08:42:12 25 4
gpt4 key购买 nike

我需要在使用 jquery each 之后检查当前元素是否是列表中的最后一个我试过了

    $('#droplist div.panel').each(function(){
if($(this).last()){
alert($(this).attr('id')+' is the last order');
}else{
alert('Not the last order');
}

});

    $('#droplist div.panel').each(function(){
if($(this).is(':last')){
alert($(this).attr('id')+' is the last order');
}else{
alert('Not the last order');
}

});

有一组正在被选择的动态元素,当它们被选择时,我正在遍历它们并在我进行时执行计算。我需要最后一个来终止我的计算功能。即需要标记我已到达当前列表中的最后一个元素。

谢谢大家。

最佳答案

您可以获得查询的长度并比较每个循环中的当前索引:

var list = $('#droplist div.panel')
var length = list.length;
list.each(function(index){
if(index == length-1){
alert($(this).attr('id')+' is the last order');
}else{
alert('Not the last order');
}
});

关于javascript - 使用 jquery $.each 时如何检查当前元素是否是最后一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25340234/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com