1 回答
TA贡献1794条经验 获得超7个赞
如果您可以将选定onchange的select索引传递给操作:
<select id="select1" onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value+'&selectedIndex='+this.options[this.selectedIndex].index);">
在行动中,从查询字符串中获取索引,使用 Viewbag 发送到视图:
public ActionResult Spain(string order ,string selectedIndex)
{
....
ViewBag.selectedIndex = selectedIndex;
return View();
}
在该页面中,加载 DOM 后,您可以使用 JQuery 设置选定的索引值:
@section Scripts{
<script>
$(function () {
if (@ViewBag.selectedIndex !=null) {
$("#select1").prop('selectedIndex', @ViewBag.selectedIndex);
}
})
</script>
}
添加回答
举报