我想处理选择框中更改的选定值的事件。
<%= select_tag "vehicle", options_from_collection_for_select(@vid,"id","id"), :prompt => "Select vehicle" %>
由于在 rails 3.1 中不推荐使用 remote_function,我想知道如何编写 :onchange 事件,并且我想用 ruby 而不是 JavaScript 编写。
我想处理选择框中更改的选定值的事件。
<%= select_tag "vehicle", options_from_collection_for_select(@vid,"id","id"), :prompt => "Select vehicle" %>
由于在 rails 3.1 中不推荐使用 remote_function,我想知道如何编写 :onchange 事件,并且我想用 ruby 而不是 JavaScript 编写。