Jquery选择器

父类移除:

   $(obj).parents("tr").remove(); 

tr标签后边的所有同级tr标签删除

$('tr').eq(0).siblings('tr').remove();

标签下的第一个标签追加

$('tbody:first').append("");

你可能感兴趣的:(选择器)