我需要在提交表单后为selecteddown设置selectedindex = 0。 我尝试过如下。
$("#filterByName").prop('selectedIndex', 0);
$("#filterByName").selectedIndex=0;
$("#filterByName").get(0).selectedindex=0;
但我无法实现。请告诉我如何在提交表单后重置下拉列表。
编辑: $('#filterByName')[0] .selectedIndex .in我正在选择索引值。在sumit点击后我设置$('#filterByName')[0] .selectedIndex = 0然后这个语句没有设置在点击event.assigning之后显示索引0,但为什么在UI中没有显示?
<span id="filterByNames"><%= Html.DropDownList("filterByName", new SelectList(Model.Names, "Name", "Name", Model.Name),
new { onchange = "filterByName()" }) %></span>
请检查我的代码并告诉我如何在按钮点击后重置下拉列表选择索引?
答案 0 :(得分:2)
<强> HTML 强>
<select id="test">
<option value="1">Test</option>
<option value="2">Test2</option>
</select>
<强> Jquery的强>:
$('#test').val("2")
在你的情况下是这样的:
$("#filterByName").val("0");
答案 1 :(得分:2)
提交表格后,您可以像这样使用
$('#submit').click(function(){
// after submit code
$('#filterByName option:selected').attr('selectedIndex',0);
return false;
});
答案 2 :(得分:0)
您可以使用以下代码重置所有选择。
$('form select').each(function () {
$(this).find('option').removeAttr('selected');
$(this).find('option:first').attr('selected','selected');
});
答案 3 :(得分:-1)
只需你可以这样做
$("#filterByName").val(0);
答案 4 :(得分:-1)