我使用了两个表。我想使用特定的表tr id删除一行。我使用代码
$("#tabDisplay1 #"+pmRowId).remove();
$("#tabDisplay2 #"+pmRowId).remove();
但是有一段时间我有相同的ID,删除不工作?
答案 0 :(得分:0)
ID只能在文档中出现一次。你应该
我建议使用一个类:
$("#tabDisplay1 ."+pmRowClass).remove();
$("#tabDisplay2 ."+pmRowClass).remove();
答案 1 :(得分:0)
您应该为每行保留唯一ID,然后才能删除预期的行。