级联下拉列表

时间:2010-09-03 10:30:29

标签: asp.net-mvc-2

有没有json数据的替代方法来级联下拉列表? 我正在使用国家和州下拉列表但是使用json级联数据需要花费太多时间

 [HttpGet]
 public ActionResult States(int countryId)
 {
     DateTangoEntities _db = new DateTangoEntities();
     var tset = _db.States.Where(r => r.CountryID == countryId).Select(r =>
         new { r.StateName, r.StateID });
     return Json(tset, JsonRequestBehavior.AllowGet);
 }

这里是jquery部分

$(document).ready(function () {
    var countries = $("#Country");
    var regions = $("#States");

    countries.change(function () {
        regions.find('option').remove();
        $.getJSON('/Profile/States', { countryId: countries.val() }, function (data) {
            $(data).each(function () {
                $('#States').append('<option value="' + this.StateID + '">' + this.StateName + '</option>').resetSS();
            });
        });
    });
});