我是JQuery / JS的初学者,我正在尝试在Rails 3.1应用程序中实现依赖的下拉列表。我有以下表格:
<%= debug params %>
<%= form_for([@wall.climbing_centre, @wall]) do |f| %>
<% if @wall.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@wall.errors.count, "error") %> prohibited this wall from being saved:</h2>
<ul>
<% @wall.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div id="kind" class="field">
<%= f.label :kind %><br />
<%= f.select :kind, Wall::Kinds, :input_html => {:rel => "/kinds"} %>
</div>
<div class="field">
<%= f.label :wall_number %><br />
<%= f.text_field :number%>
</div>
<div id="gradelist" class="field">
<%= f.label :grade %><br />
<%= f.select :grade, Wall::BGrades %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
以下JavaScript
jQuery.ajaxSetup({
'beforeSend': function(xhr) { xhr.setRequestHeader("Accept", "text/javascript") }
});
jQuery(function($) {
// when the #kind field changes
$("#kind").change(function() {
// make a POST call and replace the content
$.post('/kinds', {id: $("#wall_kind").val()}, null, "script");
return false;
});
})
以下JS.ERB模板:
$("#gradelist").html("<%= label :gbabe, 'Grade'%></br><%=select_tag :gbabe, options_for_select(@grades) %>");
我的墙控制器中的以下操作: def grades_by_kind
if params[:id].present?
@grades = (params[:id] == "Boulder" ? Wall::BGrades : Wall::FGrades)
else
@grades = []
end
respond_to do |format|
format.js
end
end
我在墙模型中有以下常量:
FGrades = %w[5 5+ 6A 6A+ 6B 6B+ 6C 6C+ 7A 7A+ 7B 7B+ 8A 8A+ 8B 8B+ 9A 9A+]
BGrades = %w[V0 V0+ V1 V2 V3 V4 V5 V6 V7 V8 V9 V10 V11 V12 V13 V14 15]
Kinds = ['Boulder', 'Leading', 'Top Rope']
更改:kind选择框中的选择,触发JS post请求,并收到以下响应:
$("#wall_grade").html("<label for="gbabe_Grade">Grade</label></br><select id="gbabe" name="gbabe"><option value="5">5</option>
<option value="5+">5+</option>
<option value="6A">6A</option>
etc...
<option value="8B+">8B+</option>
<option value="9A">9A</option>
<option value="9A+">9A+</option></select>");
但是,网页中显示的id =“gradelist”div中的下拉值实际上并未发生变化。为什么不改变HTML?
答案 0 :(得分:0)
您的选择不会改变,因为您没有对从服务器获得的响应做任何事情。您需要在$.post
来电中指定callback。此外,您需要在返回之前将成绩转换为html选项列表,可能使用options_for_select