<div > <%= f.label :type %><br /> <%= f.select "type_id",options_from_collection_for_select(@type,"type_id","name"),:include_blank=>true%> </div>
我的问题是,我想添加一个特定的类名称到该选择标签进行验证.我试过加入
:class=>"myclassname"
但它不适用于me.plz解决我的问题
<%= f.select "type_id",{ :include_blank => true },{ :class => 'myclassname' } %>