删除jquery中的表行

时间:2010-08-19 15:36:09

标签: jquery jquery-ui jquery-selectors

我在td中有一个表和一个隐藏字段,用于存储主键。删除表行我想检索此值并将其添加到另一个隐藏字段

 

我想在隐藏字段中检索此已删除行的数据??

1 个答案:

答案 0 :(得分:2)

删除行时,可能使用.remove(),您仍然可以查询其元素,例如使用.find(),如下所示:

$(".delete").click(function() {
  var id = $(this).closest("tr").remove().find("input[type=hidden]").val();
  //do something with the ID
});

You can give it a try here