1
您好我有兩行 像:克隆錶行
<tr>
<td>
<%:Html.Label("Name")%>
<%:Html.TextBoxFor(model=>model.Name)%>
</td>
</tr>
<tr>
<td>
<%:Html.Label("Age")%>
<%:Html.TextBoxFor(model=>model.Age)%>
</td>
</tr>
我應該如何克隆這些兩行和最後一行完成後添加。 我想是這樣的:
$("#" + tableId + "tbody")
.clone(true)
.insertAfter("#" + tableId + " tr:last");
$('#' + tableId + ' tbody:first>tr:last>td:last')
.empty()
.append("<input type=\"image\" id=\"imgDelete\" name=\"delete\" alt='' class=\"delete\" onclick='DeleteTableRow(this)' />");
哇請編輯這使它有點可讀... – Matt 2011-03-14 12:15:12
你想在服務器端或客戶端添加行嗎?你要做的是在客戶端使用jQuery。如果服務器端可以使用asp.net mvc helper。 – CallMeLaNN 2011-03-14 18:48:35