如何删除某些标签后的所有标签?

我需要删除#first之后的标签,并且仅在#container删除。 我怎么能用jQuery做到这一点?

  

谢谢

您可以使用nextAll方法: http : nextAll

 $("#first").nextAll().remove(); 
 $.("#container #first ~ *").remove(); 
 $("#container :gt(0)").remove();