我有这样的东西…
$( 'ul li' ).each( function( index ) { $( this ).append( ',' ); } );
我需要知道什么索引将是最后一个元素,所以我可以这样做…
if ( index !== lastIndex ) { $( this ).append( ',' ); } else { $( this ).append( ';' ); }
任何想法,家伙?
解决方法
var total = $('ul li').length; $('ul li').each(function(index) { if (index === total - 1) { // this is the last one } });