我正在使用select_tag:
<%= select_tag :s_user_type, options_for_select(User.all.map(&:user_type).uniq.compact.collect{|e| [e]}, user_type), { :multiple => false, prompt: 'I am looking for a ...', class: "input-lg dropdown-home form-control" } %>
进入下面的下拉列表。我想知道如何更改drop_down的默认图标(下方圆圈中显示的向上和向下箭头),并带有fontawesome图标(例如this)。这可能吗?如果是这样,任何线索我怎么能在Rails中做到这一点?