将表行复制到另一个表HTML

时间:2014-05-20 10:20:05

标签: javascript html html-table

Fiddle

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

$(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"));

                });

2 个答案:

答案 0 :(得分:4)

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

$('#myTable.tr') 

而不是

$('#myTable tr')

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

祝你好运!

答案 1 :(得分:2)

JS:

$(function() {
    $('#myTable tbody tr').each(function(){
        $(this).append('<td><button class="copy">Copy</button></td>');
    });

    $(document).on('click', 'button.copy', function(){
        var $tr = $(this).parents('tr:first').clone();

        $tr.appendTo($('#stopsTable > tbody'));
    });
});

在这里测试:

http://jsfiddle.net/V7wXD/8/