私信  •  关注

Sushil

Sushil 最近创建的主题
Sushil 最近回复了

希望这是你需要的

$("button").click(function(){
        $(".parent-row>.row:not(:first)").remove();
});

$("button").click(function(){
 $(".parent-row>.row").each(function(index, element){
  if(index>0)
   element.remove();
 })
});