首先我有个 form_for
里面有个按钮
<%= f.text_field :isbn, :class => 'text_field', :id => 'post_isbn' %> <%= f.button "获取", :class => 'btn', :id => "get_book_button", :type => "button" %>我写了 js,后台用 js.erb <% if @sucess %> $('#share_book').show() $('#post_tag_names').val("<%= @tags.join(',') %>") $('#content').html("<%= j render 'content', :book => @book %>") <% else %> Window.APP.alert('找不到该书,请查看 ISBN 是否正确',"#share_book") <% end %>
那么我@book这个参数怎么加入上面 form_for 提交的 params 呢