2010-08-19 110 views
1

我有一個表,並在其中一個TD裏面的隱藏字段存儲的主鍵。而刪除錶行我想取回這個值,並將其添加到另一個隱藏字段刪除錶行jQuery的

我想要檢索的隱藏字段中的數據爲這個刪除的行?

回答

2

當你刪除該行有可能會使用.find()這樣使用.remove()你仍然可以查詢它的元素,例如:

$(".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