我有選擇軌道做出選擇標籤記得選擇
<%= form_tag "?", :method => :get, :class => "form-inline" do %>
<%=select_tag 'brand_name', options_for_select(@brands.collect{ |b| [b.name, b.name] })%>
<button class="btn btn-default " type="submit" value ="search">apply </button>
<%end%>
這似乎是工作的一種形式。 所以我想包括文本select brand
空白選項我嘗試這樣做:
<%=select_tag 'brand_name', options_for_select(@brands.collect{ |b| [b.name, b.name] }), {:include_blank => 'select brand'}%>
但現在這個空白選項始終處於選中狀態。 例如,如果我選擇coca-cola
並按提交按鈕 我去的網頁mysite?brand_name=coca-cola
但在我的下拉空白選項(select brand
) 所以,我怎樣才能使它選擇選項coca-cola
,如果我選擇了可口可樂。 此外,我怎麼添加類名到我的選擇?=)
https://stackoverflow.com/questions/10696227/how-to-make-the-select-tag-keep-value-of-last-search – dft