我想使用ajax填充下拉列表,但出現錯誤。如何使用ajax/jquery將Json結果綁定到下拉列表。所以任何幫助將不勝感激。 這是我的控制器。將Json結果綁定到下拉列表
public JsonResult GetMonths(int YearId)
{
CCIRepository _repository = CCIRepository.CreateRepository();
List<MonthListClass> list = new List<MonthListClass>();
list = _repository.GetMonthFromImportDate(YearId);
return Json(new SelectList(list, "Value", "Text"));
}
這是我的Ajax代碼。
<p>
<h3>Year:</h3>@Html.DropDownList("Yearitems", (IEnumerable<SelectListItem>)ViewBag.SelectList, "Select Year")
<h3>Month:</h3>@Html.DropDownList("MonthItems",(IEnumerable<SelectListItem>)ViewBag.SelectMonthList,"Select Month")
</p>
<p><input type="submit" value="Search" /></p>
<script>
$(document).ready(function() {
$("#Yearitems").change(function() {
debugger;
alert($("#Yearitems>option:selected").attr("Value"));
$.ajax({
type: "Get",
url: '@Url.Action("GetMonths","AirtelManagement")',
data: { YearId: $("#Yearitems>option:selected").attr("Value") },
datatype: "Json",
success: function (data) {
debugger;
$("#MonthItems").empty();
$.each(data, function (index, item) {
debugger;
$("#MonthItems").append('<option>', {
value: item.value,
text: item.text
}, '</option>')
});
//$("#MonthItems").html(items);
},
error: function() {
alert("An Error Occured");
}
});
});
});
</script>
什麼錯誤是,你是你得到些什麼? – progrAmmar
錯誤:function(){ alert(「An Error Occured」); } – user3273883
這個警報框我越來越。 – user3273883