2
我想禁用下拉列表中給定的默認選項。 例如有在下拉列表中的三個值如何在下拉列表中禁用默認選項
["Select a status", "Processing", "Completed"]
我想申請「選擇狀態爲」禁用並選擇屬性。
你能告訴我該怎麼做嗎?我無法同時使用兩個屬性值。
我想禁用下拉列表中給定的默認選項。 例如有在下拉列表中的三個值如何在下拉列表中禁用默認選項
["Select a status", "Processing", "Completed"]
我想申請「選擇狀態爲」禁用並選擇屬性。
你能告訴我該怎麼做嗎?我無法同時使用兩個屬性值。
您是否嘗試過使用options_for_select
<%= select_tag(:city_id, options_for_select(["Free", "Basic", "Advanced", "Super Platinum"], :disabled => "Super Platinum", :selected => "Super Platinum")) %>
以下工作對我來說
<%= select("post", "person_id", options_for_select(["Free", "Basic", "Advanced", "Super Platinum"], :disabled => "Super Platinum", :selected => "Super Platinum")) %>
是的,我試過,但它不會使「超白金」默認選項。 – Deepika
我更新了代碼,以顯示如何設置默認選項 – dbslone
+1你打我吧 – Salil