将表格单元格添加到现有表格行jQuery

时间:2011-10-24 11:50:51

标签: javascript jquery jquery-selectors html-table

我正在尝试使用jQuery向表中添加值 - 遗憾的是,我不知道如何让jQuery将表单元格添加到现有行。例如:

$("<td><a href='#'>" + key + "</a></td>").click(function(e) {
    e.preventDefault();
    testset(key);
}).appendTo('#table1');

这会将单元格添加到表格末尾,标识为table1。使用jQuery将单元格添加到现有表行(<tr>)的最佳方法是什么?快速谷歌没有透露任何东西。 的问候,

关于SystemError

2 个答案:

答案 0 :(得分:5)

.appendTo('#table1 #rowId');

或者你可以这样做:

.appendTo('#table1 tr:nth-child(5)');

http://api.jquery.com/nth-child-selector/

答案 1 :(得分:0)

您必须将它们附加到特定行而不是表格:

$("<td><a href='#'>" + key + "</a></td>").click(function(e) {
    e.preventDefault();
    testset(key);
}).appendTo('#table1 tr#yourrowId');