如何用jquery删除表行id?

时间:2012-12-31 10:02:48

标签: jquery

我使用了两个表。我想使用特定的表tr id删除一行。我使用代码

$("#tabDisplay1 #"+pmRowId).remove();  
$("#tabDisplay2 #"+pmRowId).remove(); 

但是有一段时间我有相同的ID,删除不工作?

2 个答案:

答案 0 :(得分:0)

ID只能在文档中出现一次。你应该

  • 使用不同的ID
  • 或使用课程

我建议使用一个类:

$("#tabDisplay1 ."+pmRowClass).remove();  
$("#tabDisplay2 ."+pmRowClass).remove(); 

Demonstration

答案 1 :(得分:0)

您应该为每行保留唯一ID,然后才能删除预期的行。