web-dev-qa-db-fra.com

Comment trouver le dernier index de each () dans jQuery?

J'ai quelque chose comme ça ...

$( 'ul li' ).each( function( index ) {

  $( this ).append( ',' );

} );

J'ai besoin de savoir quel index sera pour le dernier élément, je peux donc faire comme ça ...

if ( index !== lastIndex ) {

  $( this ).append( ',' );

} else {

  $( this ).append( ';' );

}

Des idées, les gars?

37
daGrevis
var total = $('ul li').length;
$('ul li').each(function(index) {
    if (index === total - 1) {
        // this is the last one
    }
});
76
Luke Sneeringer
var arr = $('.someClass');
arr.each(function(index, item) {
var is_last_item = (index == (arr.length - 1));
});
14
BnW

N'oubliez pas de mettre en cache le sélecteur $("ul li") car ce n'est pas bon marché.

La mise en cache de la longueur elle-même est une optimisation micro optionnelle.

var lis = $("ul li"),
    len = lis.length;

lis.each(function(i) {
    if (i === len - 1) {
        $(this).append(";");
    } else {
        $(this).append(",");
    }
});
9
Raynos
    var length = $( 'ul li' ).length
    $( 'ul li' ).each( function( index ) {
        if(index !== (length -1 ))
          $( this ).append( ',' );
        else
          $( this ).append( ';' );

    } );
6
Mutt

en utilisant jQuery .last ();

$("a").each(function(i){
  if( $("a").last().index() == i)
    alert("finish");
})

DEMO

0
Marconi

C'est une très vieille question, mais il y a une manière plus élégante de le faire:

$('ul li').each(function() {
    if ($(this).is(':last-child')) {
        // Your code here
    }
})
0
Black Shell