LoginSignup
1
1

More than 5 years have passed since last update.

erbのselectボックスにクラス指定する方法

Posted at

概要

erbの f.select 的なやつにclass指定する方法。

解決

<%= f.select :birth_month, (1..12).map{|m| [m, m]}, {}, { :selected => @current_user.birth_month || 1, class: 'form-control' } %>
  • 第三引数に{}
  • 第四引数に属性を指定できる模様
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1