私はこれをやろうとしました:
$(this + ' li:not(:nth-last-child(2)):not(:last-child)').hide()
完全なコードサンプル:
$('.comments').each(function(){
$(this + ' li:not(:nth-last-child(2)):not(:last-child)').hide()
var template = $('#expand').html();
$(this).prepend(template)
});
後で条件を入れたいので、「each」関数として実行する必要があります。