1

如何将html类名添加到rails中的选择框

我尝试了以下方法,但出现语法错误

<%= f.collection_select :product, @product, :id, :name, selected: @post.product.id, html_options={class: 'tst'} %>

<%= f.collection_select :product, @product, :id, :name, selected: @post.product.id,{class: 'tst'} %>


<%= f.collection_select :product, @product, :id, :name, selected: @post.product.id, html_options: {class: 'tst'} %>

尝试了上述所有三种方法,但我无法修复它如何在其中添加一个 html 类。

4

1 回答 1

1

我用 :class => classname 做了类似的工作

于 2013-11-14T18:42:39.927 回答