我有以下 date_select 助手。我想添加一个类,但它不生成 HTML。
<%= date_select :recipient, :birthday, :order => [:day, :month, :year], :start_year => 1920, :end_year => 2013, :class => "input-mini" %>
正如一些解决方案所建议的那样,我也尝试过使用哈希,但出现语法错误:
<%= date_select :recipient, :birthday, :order => [:day, :month, :year], :start_year => 1920, :end_year => 2013, {:class => "input-mini"} %>
不确定我是否真的了解何时以及如何使用哈希对其进行格式化。