我想在rails 3中添加class属性来选择标签 我的代码是
<div >
<%= f.label :type %><br />
<%= f.select "type_id", options_from_collection_for_select(@type,
"type_id","name"),:include_blank=>true%>
</div>
我的问题是我想为此select标签添加一个特定的类名以进行验证。 我尝试添加
:class=>"myclassname"
但它对我不起作用。解压我的问题
答案 0 :(得分:27)
您可以像这样添加类属性。查看select
<%= f.select "type_id",
options_from_collection_for_select(@type, "type_id","name"),
{ :include_blank => true },
{ :class => 'myclassname' } %>