我在Rails中有用戶的選擇框。有沒有簡單的方法,如何從該選擇框中獲取選定的實例?從selectbox中獲取實例
show.html.erb:
<select id="user_select" name="user_select" class="input-medium">
<% @users.each do |user| %>
<option><%= user.username %></option>
<% end %>
</select>
<!-- button to addfriend method like on next example -->
在這個時候,我有這樣的事情在這個地方:
<ul id="user_list" name="user_list">
<% @users.each do |user| %>
<li><%= user.username %></li>
<%= link_to "Add", addfriend_project_path(@project, :user_id => user.id) %>
<% end %>
</ul>
,我需要得到一些用戶信息我的方法 - > ID的選擇框將是最好的。
with jQuery:'$('#user_select')。val()' – MrYoshiji 2013-05-06 15:41:50
但它只返回用戶名是寫在該選擇框的權利? – medy75 2013-05-06 15:43:01
我的答案幫助@ medy75? – MrYoshiji 2013-05-30 23:49:47