1

レールの選択ボックスにhtmlクラス名を追加する方法

次の方法を試しましたが、構文エラーが発生しました

<%= 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'} %>

上記の3つの方法をすべて試しましたが、htmlクラスを追加する方法を修正できません。

4

1 に答える 1

1

:class => classname で同様の作業を行いました

于 2013-11-14T18:42:39.927 に答える