我正在使用带有
的simple_formf.association as: :radio_buttons
这会生成类似
的html结构div.control-group
label.control-label
div.controls
label.radio
input[type="checkbox"]
我可以使用label_html = ...或input_html = ...
向控件标签和输入字段添加特定的自定义类但我想在label.radio
中添加一个特定的类有什么方法可以实现这个目标吗?
答案 0 :(得分:2)
使用item_wrapper_class
= simple_form_for @post do |f|
= f.input :name
= f.association :comments, :as => :radio_buttons, :item_wrapper_class => 'test_class'