我在表格中有这个
<%= simpleform_for @customer_bill do |f| %>
<%= f.label :product_id %>
<%= f.collection_select :product_id,Product.all,:id,:title, :prompt => "Select a Product", :style => 'width:150px;' %>
<%= f.label :price %>
<%= f.text_field :price, :size=>20, :id =>"price", :class =>"price" %>
<br/>
/*rest of code*/
在产品表中,我有“产品标题”和“价格”。我在客户账单和产品模型之间建立了必要的关联。
选择产品后,价格应自动出现。最好的方法是什么?Ajax/Jquery 我该如何处理这个问题????任何指导都会有所帮助。