本文介绍了将行动态添加到表中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



在现有表格中动态追加两行。



第1步:最初表格中没有行。



一个名为AddField的按钮。

对于每个按钮,请单击重复以下步骤。



第2步:在表格中添加了两行。



如何可以使用javascript。



请在asp.net mvc3中提供解决方案。






Appending two rows dynamically in a existing table.

Step 1: Initially table contains no rows.

A button named as AddField .
For each button click repeat the following step.

Step 2: two rows added to the table.

How it is possible using javascript.

Please provide a solution in asp.net mvc3.


$('#Field tr').length;//first i take the current number of tr. 
Here 'Field' is my table id.
then using the following code i append one row below the current row.
 $('.AddTableRowForm').append(//Inside this i specified all controls which are added on each row.)





附加一行指定控件。




appended one row with specified controls.


Append two rows below the current row.

Thanks& Regards,
Anupama

推荐答案






附加一行指定的控件。





在当前行下方添加两行。



谢谢&问候,

Anupama



appended one row with specified controls.


Append two rows below the current row.

Thanks& Regards,
Anupama



这篇关于将行动态添加到表中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 14:01