我想根据在rails 3的列表框中选择的选项禁用文本框
我有选择和文本框的代码
<%= f.select "type_id", options_from_collection_for_select(@types, "type_id","name")%>
<%= f.text_field :zonetype %>
它显示类型列表
我想做的是,如果我选择 no type ,则必须禁用select 后面的文本框
这个怎么办,求大神帮忙。。。。
我想根据在rails 3的列表框中选择的选项禁用文本框
我有选择和文本框的代码
<%= f.select "type_id", options_from_collection_for_select(@types, "type_id","name")%>
<%= f.text_field :zonetype %>
它显示类型列表
我想做的是,如果我选择 no type ,则必须禁用select 后面的文本框
这个怎么办,求大神帮忙。。。。