我有单选按钮,我想如果我选择第一个变种我的<%= f.text_field :price %>
可用,如果我选择第二个变种<%= f.text_field :price %>
则不可用
<%= f.radio_button :price, true %><%= f.label :price %>
<%= f.text_field :price %>
<%= f.radio_button :price, false %><%= f.label :price %>
<%= radio_button_tag(:price, "price") %>
你怎么能这样做?
答案 0 :(得分:0)
一位好老兄建议使用这个脚本:
<%= f.radio_button :price, false %><%= f.label :price %>
<%= f.text_field :price %>
<%= f.radio_button :price, true %><%= f.label :price %>
<script>$(document).ready(function(){
$('#post_price_true').change(function(){
$('#post_price').attr('disabled','disabled');
});
$('#post_price_false').change(function(){
$('#post_price').removeAttr('disabled');
});
});</script>
odin nol'v pol'zu zritelei