我需要在提交表單後爲下拉菜單設置selectedindex = 0。 我嘗試像下面。如何重置HTML中選定的索引下拉值?
$("#filterByName").prop('selectedIndex', 0);
$("#filterByName").selectedIndex=0;
$("#filterByName").get(0).selectedindex=0;
但我無法達到目標。請告訴我如何在提交表單後重置下拉菜單。編輯: $('#filterByName')[0] .selectedIndex .in我得到選擇索引value.after提交點擊我設置$('#filterByName')[0] .selectedIndex = 0然後此聲明沒有設置顯示索引0點擊event.assigning後,但爲什麼在用戶界面不顯示?
<span id="filterByNames"><%= Html.DropDownList("filterByName", new SelectList(Model.Names, "Name", "Name", Model.Name),
new { onchange = "filterByName()" }) %></span>
請檢查我的代碼,讓我知道如何重置按鈕單擊後下拉選定的索引?
請告訴我我的問題沒有解決。就像上面我試過但下拉指數沒有重置。 – user3494837