MVC3 下拉框联动效果完整代码
答案:1 悬赏:60 手机版
解决时间 2021-03-24 12:02
- 提问者网友:雨不眠的下
- 2021-03-24 07:04
MVC3 下拉框联动效果完整代码
最佳答案
- 五星知识达人网友:孤独的牧羊人
- 2021-03-24 07:41
View:
@Html.DropDownListFor(m => m.ORG3, CheJian, new { style = "width: 100px;" })
@Html.DropDownListFor(m => m.ORG4,BanZu, new { style = "width: 100px;" })
Controllers:
//JsonResult继承了ActionResult
public JsonResult GetBZ(int orgID) //GetBZ对应View的GetBZ,orgID也是通过View可以获取参数值
{
var d = Organization.GetOrgSelectList1(orgID, OrgLayer.工区);
return Json(d, JsonRequestBehavior.AllowGet);
//这里的代码是封装过的,可以在这里写任何想要的代码
//注意,由于是列表框 所以返回的值应该是List(也许不只一种传递类型)
}
@Html.DropDownListFor(m => m.ORG3, CheJian, new { style = "width: 100px;" })
@Html.DropDownListFor(m => m.ORG4,BanZu, new { style = "width: 100px;" })
Controllers:
//JsonResult继承了ActionResult
public JsonResult GetBZ(int orgID) //GetBZ对应View的GetBZ,orgID也是通过View可以获取参数值
{
var d = Organization.GetOrgSelectList1(orgID, OrgLayer.工区);
return Json(d, JsonRequestBehavior.AllowGet);
//这里的代码是封装过的,可以在这里写任何想要的代码
//注意,由于是列表框 所以返回的值应该是List
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯