我试着这样做:
$(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)
});
我需要将它作为“每个”函数运行,因为我想稍后输入一个条件。