我在一个普通的 html 页面中有 4 个表。其中三个表包含需要插入到第四个表中的数据。我还需要选择删除第 4 个表中的这些行并将数据放回正确的表中。我有一个例子。从 Table1 中移动一行并将其插入 Table2,然后从 Table2 中删除该行并重新插入 Table1。每个操作都有添加和删除按钮。请参阅下面的 jQuery:
$(document).ready(function() {
// Setup the "Move Me" links
$(".rowLink").click(function () {
// get the row containing this link
var row = $(this).closest("tr");
// find out in which table it resides
var table = $(this).closest("table");
// move it
row.detach();
if (table.is("#table1")) {
$("#table2").append(row);
}
else {
$("#table1").append(row);
}
});
});
$(document).ready(function() {
$('table a').click(function(e) {
e.preventDefault();
});
});