使用 simple_form 显示隐藏字段
Show a hidden field with simple_form
我有一个这样的隐藏字段:
<%= f.input :authentication, label: 'Authentication Password', as: :hidden %>
我想在单击管理单选按钮时显示隐藏字段:
<%= f.input :account_type , as: :radio_buttons, :checked => 'Student', collection: ['Student', 'Admin'], wrapper: :vertical_radio_and_checkboxes %>
我该怎么做?
我试过使用
$('#user_authentication').show();
但这不起作用。
删除为:隐藏并使用
$('#user_authentication').hide();
加载 DOM 时。
我有一个这样的隐藏字段:
<%= f.input :authentication, label: 'Authentication Password', as: :hidden %>
我想在单击管理单选按钮时显示隐藏字段:
<%= f.input :account_type , as: :radio_buttons, :checked => 'Student', collection: ['Student', 'Admin'], wrapper: :vertical_radio_and_checkboxes %>
我该怎么做?
我试过使用
$('#user_authentication').show();
但这不起作用。
删除为:隐藏并使用
$('#user_authentication').hide();
加载 DOM 时。