0

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

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

但有时我有相同的 id occuar remove 不起作用?

4

2 回答 2

0

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

  • 使用不同的 id
  • 或使用一个类

我建议使用一个类:

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

示范

于 2012-12-31T10:04:23.493 回答
0

您应该为每一行维护唯一的 id,然后只有您可以删除预期的行。

于 2012-12-31T10:05:33.963 回答