gpt4 book ai didi

jquery - 如何使用jquery克隆表中的tr

转载 作者:行者123 更新时间:2023-12-01 02:44:51 25 4
gpt4 key购买 nike

页面上有很多表格。我想在某个 tr 之后添加包含现有数据的新行。所以我有一张 table :

        <table>
<tr>
<th>...</th>
<td>...</td>
</tr>
</table>
<p id="add-tr">[add]</p>

当我点击[add]时,我想添加一个新的tr以及现有的thtd元素。我发现最后一张 table 有:

$('#add-tr').on('click',function(){
$(this).prev('table')...;
});

(用 hide() 函数检查)下一步做什么?尝试过:

$(this).prev('table').closest('tr').clone();

但是没有效果!

我在 stackoverflow 上的第一个问题!所以不要太严厉,谢谢!

最佳答案

您应该使用findchildren方法并追加行,closest方法选择元素最接近的父元素。

var $table = $(this).prev('table');
$table.find('tr:first').clone().appendTo($table);

关于jquery - 如何使用jquery克隆表中的tr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13961445/

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