目前我正在填写表格,
<%= form_tag({:action => :update}, :method => :put) do %>
<table class="striped" id="player-table">
<% @player_types.each_with_index do |p_type, i| %>
<tr>
<td><%= text_field_tag :name_player_type, p_type.name_player_type, :name => "p_types[#{i}][name_player_type]" %></td>
</tr>
<% end %>
</table>
<% end %>
现在我想在这个相同类型的表中添加多个新行(这里不使用Ajax)可能使用javascript。新行将是一个空字段,但我显然必须将数据传递给控制器。任何人都可以提出一个很好的方法吗?
编辑:我想在点击按钮时添加一个新行