如何在Ruby中扩展date_select的范围?
它只能到2005年,我想将它用于出生日期。
答案 0 :(得分:17)
您可以使用:start_year
选项,请参阅the documentation。
答案 1 :(得分:6)
<%= f.date_select :exp_date, :start_year=>2000,:end_year=>2030 %>
它会显示2000 to 2030 years..
如果您想要更多,可以更改:start_year and :end_year values.