感谢 Sandip 的帮助,我设法解决了我的问题!
这是视图:
= f.radio_button :system, "bacteria"
Bacteria
= f.radio_button :system, "mammalian"
Mammalian
= f.radio_button :system, "yeast"
Yeast
= f.radio_button :system, "insect"
Insect
%br/
= f.radio_button :system, nil, id: 'other_system_radio',
checked: radio_checked?('system', f.object.system)
Other:
%input.input-small#other_system_text{ value: text_input?('system', f.object.system) }
我使用辅助函数来管理编辑表单(如果值与给定值不同,则填写文本字段):
def radio_checked?(type,val)
case type
when 'system'
['bacteria', 'mammalian', 'yeast', 'insect'].include?(val) ? '' : 'checked'
end
end
def text_input?(type,val)
case type
when 'system'
['bacteria', 'mammalian', 'yeast', 'insect'].include?(val) ? '' : val
end
end
当用户关注文本字段时,还有一点 Javascript 可以选择“其他”单选按钮:
@handle_other_field = ->
$('#other_system_text').focus( -> $('#other_system_radio').attr('checked','checked'))
$('#other_system_text').keyup( -> $('#other_system_radio').val($(this).val()))