$.each(data, function (i, item) {
var id=item.Id;
var desc=item.EquStop_Desc
}
);
这样试试
补充
后台方法改成
public ActionResult GetListByEquTy(string newValue)
{
List<DMS_EquStopTypeModel> list = new List<DMS_EquStopTypeModel>();
MyCommonHelp mycommonHelp = new MyCommonHelp();
StringBuilder sql = new StringBuilder();
sql.AppendFormat(@"select Id,EquStop_Desc from DMS_EquStop
where EquStop_Type = '{0}'", newValue);
DataTable dt = DBHelp.GetDataTable(sql.ToString());
list = mycommonHelp.ConvertToList<DMS_EquStopTypeModel>(dt);
return Json(list, JsonRequestBehavior.AllowGet);
}