0

フォームのある new.html.slim ページがあります

_form.html.slim

= form_for  (@text_input), remote: true do |f|   
 .field
  = f.text_field :title
  ...

new.html.slim

h1 new text_input
 == render 'form'
 ...
a.btn type='button' href = '#'
  | add another text input

ボタンをクリックした後にAJAXを使用してこのページに別のフォームを追加する方法は?

4

1 に答える 1