12

我想在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"

但它对我不起作用。请解决我的问题

4

1 回答 1

27

您可以像这样添加类属性。检查选择

<%= f.select "type_id", 
    options_from_collection_for_select(@type, "type_id","name"), 
    { :include_blank => true }, 
    { :class => 'myclassname' } %>
于 2012-08-16T06:55:50.097 回答