Попробуйте это:
$(function () {
$.fn.loadSelect = function (data) {
return this.each(function () {
this.options.length = 0;
var select = this;
$.each(data, function (index, itemData) {
var option = new Option(itemData.Text, itemData.Value);
$(select).append(option);
});
});
};
});
Обратите внимание, что нам нужно захватить this
во внешнем foreach, потому что во внутреннем он больше не указывает на элемент select
.
Fullрабочий пример:
Модель:
public class Item
{
public int Value { get; set; }
public string Text { get; set; }
}
public class MyViewModel
{
public int? SelectedCompanyId { get; set; }
public int? SelectedFieldOfficeId { get; set; }
public IEnumerable<Item> Companies { get; set; }
public IEnumerable<Item> FieldOffices { get; set; }
}
Контроллер:
[HandleError]
public class HomeController : Controller
{
public ActionResult Index()
{
var model = new MyViewModel
{
Companies = Enumerable.Range(1, 5).Select(i => new Item
{
Value = i,
Text = "Company " + i
}),
FieldOffices = Enumerable.Empty<Item>()
};
return View(model);
}
public ActionResult FilterFieldOffices(int companyId)
{
return Json(Enumerable.Range(1, 3).Select(i => new Item
{
Value = i,
Text = "Field offfice " + i
}));
}
}
Вид:
<script type="text/javascript" src="<%= Url.Content("~/scripts/jquery-1.4.1.js") %>"></script>
<script type="text/javascript">
$(function () {
$('#cid').change(function () {
var coid = $(this).val();
$.post('<%= Url.Action("FilterFieldOffices") %>', { companyId: coid }, function (data) {
$('#foid').loadSelect(data);
});
});
});
$(function () {
$.fn.loadSelect = function (data) {
return this.each(function () {
this.options.length = 0;
var select = this;
$.each(data, function (index, itemData) {
var option = new Option(itemData.Text, itemData.Value);
$(select).append(option);
});
});
};
});
</script>
<% using (Html.BeginForm()) { %>
<%: Html.DropDownListFor(x => x.SelectedCompanyId, new SelectList(Model.Companies, "Value", "Text"), new { id = "cid" })%>
<%: Html.DropDownListFor(x => x.SelectedFieldOfficeId, new SelectList(Model.FieldOffices, "Value", "Text"), new { id = "foid" })%>
<input type="submit" value="OK" />
<% } %>