gpt4 book ai didi

javascript - 将表格行复制到另一个表格 HTML

转载 作者:搜寻专家 更新时间:2023-10-31 22:44:29 24 4
gpt4 key购买 nike

Fiddle

我有两张 table 。当我点击一个表格行时,它会复制到另一个表格,我会根据我的要求更改按钮。请帮我。

$(window).load(function() {
var items = [];

$(".addBtn").on("click", function() {
var newTr = $(this).closest("tr").clone();

var newButtonHTML = "<input type = 'button' value='Edit' onclick='Edit()' /><input type='button' value='Delete' onclick='deleteRow(this.parentNode.parentNode.rowIndex)'/>";
$(newButtonHTML).children("button").click(function(e) {
});

$(newTr).children("td:last").html("").html(newButtonHTML);
items.push(newTr);
newTr.appendTo($("#stopsTable"));

});

最佳答案

在你的例子中,它是一个错误的选择器

$('#myTable.tr') 

代替

$('#myTable tr')

检查固定版本:http://jsfiddle.net/V7wXD/7/

最好的问候!

关于javascript - 将表格行复制到另一个表格 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23757096/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com