MVC实现多选下拉框

借助Chosen Plugin可以实现多选下拉框。

选择多项:

2

设置选项数量,比如设置最多允许2个选项:

1

考虑到多选下拉<select multiple="multiple"...></select>选中项是string数组,Model应该这样设计:

using System.Collections.Generic; using System.Web.Mvc; namespace MvcApplication1.Models { public class CarVm { public string[] SelectedCars { get; set; } public IEnumerable<SelectListItem> AllCars { get; set; } } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzpgwy.html