每次有人按下添加行按钮时,我都会尝试使用jquery来克隆表格行。谁能告诉我我的代码有什么问题?我在视图中使用HTML + smarty模板语言。这是我的模板文件的样子:
<table>
<tr>
<td>Description</td>
<td>Unit</td>
<td>Qty</td>
<td>Total</td>
<td></td>
</tr>
<tbody id="entries">
{foreach from=$arrItem item=i name=inv}
<tr>
<td>
<input type="hidden" name="invoice_item_id[]" value="{$i.invoice_item_id}"/>
<input type="hidden" name="assignment_id[]" value="{$i.assignment_id}" />
<input type="text" name="description[]" value="{$i.description}"/>
</td>
<td><input type="text" class="unit_cost" name="unit_cost[]" value="{$i.unit_cost}"/></td>
<td><input type="text" class="qty" name="qty[]" value="{$i.qty}"/></td>
<td><input type="text" class="cost" name="cost[]" value="{$i.cost}"/></td>
<td><a href="javascript:void(0);" class="delete-invoice-item">delete</a></td>
</tr>
{/foreach}
</tbody>
<tfoot>
<tr><td colspan="5"><input type="button" id="add-row" value="add row" /></td></tr>
</tfoot>
</table>
这是我的Jquery Javascript调用,我知道当我输入alert()语句时会被触发。所以问题是我不知道jquery是如何工作的。
$('#add-row').live('click', function() {$('#entries tr:nth-child(0)').clone().appendTo('#entries');});
那么我做错了什么?
答案 0 :(得分:6)
首先,没有nth-child(0)
,nth-child以1
答案 1 :(得分:1)
尝试使用:
$("tr:nth-child(0)", "#entries")
看看是否有帮助......
答案 2 :(得分:0)