标签: jquery asp.net repeater
单击“添加”按钮时,我需要动态添加行
答案 0 :(得分:0)
$('table tr:last').after('<tr>...</tr><tr>...</tr>');
答案 1 :(得分:0)
试试这个
$('table').append('<tr>...</tr>');
答案 2 :(得分:0)
看看这个 - Dynamically adding / removing rows in ASP.NET Repeater (or other control) - using custom collections