0
我使用的是form_for
幫手,並希望它提交給iframe。如何將目標添加到Rails窗體幫助程序?
<%= form_for(section, :target => 'new_section_frame') do |f| %>
...
<% end %>
我應該然後能夠調用$('form').submit()
並有形式提交給iframe中。它會工作,但目標不在輸出html中。 Rails guide on form helpers沒有這個特殊的例子。