我想在rails 3中添加类属性来选择标签我的代码是
<div >
<%= f.label :type %><br />
<%= f.select "type_id", options_from_collection_for_select(@type,
"type_id","name"),:include_blank=>true%>
</div>
我的问题是我想为这个选择标签添加一个特定的类名以进行验证。我尝试添加
:class=>"myclassname"
但它对我不起作用。请解决我的问题