我正在尝试通过注册表创建用户,其中包含 ASP.NET MVC 中的专业下拉列表
例如。个人、专业人士、经理等
有些字段很常见,例如姓名和姓氏...
有些领域在专业上是独一无二的......
我如何使用 ajax 对其进行编程。
谢谢
我正在尝试通过注册表创建用户,其中包含 ASP.NET MVC 中的专业下拉列表
例如。个人、专业人士、经理等
有些字段很常见,例如姓名和姓氏...
有些领域在专业上是独一无二的......
我如何使用 ajax 对其进行编程。
谢谢
我通过在控制器中创建一个 SelectList 并将其作为视图模型的一部分传递给视图来执行此类操作。然后在视图中,我可以选择在 SelectedValue 更改时执行某些操作,或者在其他内容触发对控制器的调用时简单地返回下拉列表的值。
Controller code:
int count = 0;
List<string> YearList = new List<string>();
for (int i = 2000; i < (DateTime.Now.Year + 6); i += 4)
{
YearList.Add(i.ToString());
if (i < iyear)
count++;
}
var q = from c in doc.Descendants("candidate")
select new can_sw_model
{
name = c.Attribute("name").Value,
office = c.Parent.Attribute("name").Value.ToUpper(),
party = c.Attribute("party").Value,
};
can_sw_view model = new can_sw_view()
{
YearList = new SelectList(YearList),
value = YearList[count],
model = q,
};
return View(model);
View code:
<script type="text/javascript">
$(document).ready(function() {
$('#YearList').val('<%= Model.value %>');
$('#YearList').change(function(event) {
window.location.replace('<%= ResolveUrl("~/Candidate/sw_candidates") %>' + "?year=" + $('#YearList').val());
});
});
function pdfclick() {
var grid = $("#grid1").data("tGrid");
window.location.replace('<%= ResolveUrl("~/Candidate/pdf") %>' + "?year=" + $('#YearList').val() + "&tab=statewide" +
"&page=" + grid.currentPage + "&orderBy=" + grid.orderBy + "&groupBy=" + grid.groupBy + "&filterBy=" + grid.filterBy);
}
</script>
我希望这有帮助!鲍勃