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?
var total = $('ul li').length;
$('ul li').each(function(index) {
if (index === total - 1) {
// this is the last one
}
});
var arr = $('.someClass');
arr.each(function(index, item) {
var is_last_item = (index == (arr.length - 1));
});
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(",");
}
});
var length = $( 'ul li' ).length
$( 'ul li' ).each( function( index ) {
if(index !== (length -1 ))
$( this ).append( ',' );
else
$( this ).append( ';' );
} );
en utilisant jQuery .last ();
$("a").each(function(i){
if( $("a").last().index() == i)
alert("finish");
})
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
}
})