您现在的位置是:网站首页> 编程资料编程资料
MVC实现下拉框联动效果(单选)_实用技巧_
2023-05-24
333人已围观
简介 MVC实现下拉框联动效果(单选)_实用技巧_
下拉框联动效果,我们以部门--职位为例,选择部门时,关联到该部门的职位.下拉框的写法就不多说了,详细请参照前文.
视图:
其中,dept是部门的属性,deptlist是部门下拉框的属性,job是职位的属性,joblist是职位下拉框的属性,下拉框绑定请参照前文
@using (Html.BeginForm("aaai003sch", "aaa", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() @Html.LabelFor(m => m.dept, new { @class = "col-sm-2 control-label" }) @Html.DropDownListFor(model => model.dept, Model.deptlist, new { @class = "form-control select2 ", style = "width: 100%;" }) @Html.ValidationMessageFor(m => m.dept, "", new { @class = "text-danger" }) @ Html.LabelFor(m => m.job, new { @class = "col-sm-2 control-label" }) @Html.DropDownListFor(model => model.job, Model.joblist, new { @class = "form-control select2 page-select2-area", style = "width: 100%;" }) @Html.ValidationMessageFor(m => m.job, "", new { @class = "text-danger" }) 当部门变动的时候,职位也相应改变:
//根据城市获取酒店 $("#dept").change(function () { var url = rootUrl + "aaa/GetJobByDept"; var dept = $(this).val(); //获取部门的值 var job = $("#job"); job.empty(); //清空当前职位的值 //这句很重要,因我们用的是select2插件,若没有用这个插件可以去掉这句 job.select2('val', ''); $.ajax({ cache: false, type: "GET", url: url, data: { "Dept": dept}, success: function (data) { $.each(data, function (id, option) { job.append($('').val(option.Id).html(option.Name)); }); job.trigger('change'); }, error: function (xhr, ajaxOptions, thrownError) { toastr["error"]("请选择部门"); } }); }); 执行js里的URL,这个程式写在控制器里:
[Description("根据部门获取职位")] [AcceptVerbs(HttpVerbs.Get)] [LoginAllowView] public ActionResult GetJobByDept(string dept) { if (String.IsNullOrEmpty(dept)) { throw new ArgumentNullException("dept"); } StringBuilder sb = new StringBuilder(); sb = new StringBuilder(); sb.Append(" SELECT jobid,jobname "); sb.Append(" FROM job_file "); sb.Append(" LEFT JOIN dept_file ON jobdept = deptid "); sb.AppendFormat(" WHERE deptid='{0}'", dept); DataTable dt = sqlHelper.getData(sb.ToString()); var result = dt.AsEnumerable().Select(row => new Item { Name = Utils.ObjToStr(row["jobname"]), Id = Utils.ObjToInt(row["jobid"], 0) }).ToList(); return Json(result, JsonRequestBehavior.AllowGet); } 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
您可能感兴趣的文章:
相关内容
- Asp.Net程序目录下文件夹或文件操作导致Session失效的解决方案_实用技巧_
- ASP.NET MVC 使用Bootstrap的方法_实用技巧_
- asp.net MVC下使用rest的方法_实用技巧_
- 微信JS-SDK分享功能的.Net实现代码_实用技巧_
- Asp.net Mvc表单验证气泡提示效果_实用技巧_
- java 单例模式(饿汉模式与懒汉模式)_实用技巧_
- ASP.NET Core Razor 页面路由详解_实用技巧_
- MVC生成页码选择器返回HTML代码详解_实用技巧_
- 详解ASP.NET Core 中的多语言支持(Localization)_实用技巧_
- asp.net mvc 动态编译生成Controller的方法_实用技巧_
