如何找出每个()在jQuery的最后一个索引?

前端之家收集整理的这篇文章主要介绍了如何找出每个()在jQuery的最后一个索引?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这样的东西…
$( '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
    }
});
原文链接:https://www.f2er.com/jquery/184294.html

猜你在找的jQuery相关文章