我正在使用 date_select 方法生成 3 个 html 选择,即日、月和年。但我需要每个选择都有一类 CSS。
我还没有在文档中找到如何将参数传递给助手,我尝试了几种方法,但什么也没做。
导轨视图:
<%= f.date_select :birthday, :order => [:day, :month, :year], :start_year => 1910, :end_year => 2012, :html => {:class => ['day', 'month', 'year']} %>
HTML 输出:
<select id="poll_user_birthday_3i" name="poll_user[birthday(3i)]">
<select id="poll_user_birthday_2i" name="poll_user[birthday(2i)]">
<select id="poll_user_birthday_1i" name="poll_user[birthday(1i)]">
像我一样的 HTML 输出:
<select id="poll_user_birthday_3i" name="poll_user[birthday(3i)]" class="day">
<select id="poll_user_birthday_2i" name="poll_user[birthday(2i)]" class="month">
<select id="poll_user_birthday_1i" name="poll_user[birthday(1i)]" class="year">
谢谢!