Find ids of checked checkboxes with jQuery in MVC
问题 I have a Field model, which represents a certain field (Name, Description, ...) class FieldModel : EntityModel { ... public bool ToCopy { get; private set; } public string Id {get; private set; } ... } An Index model, which has a collection of Fields: class EntityModel { ... } class IndexModel { public IEnumerable<EntityModel> Fields { get; private set; } } Controller for copy, that should accept ids of fields to copy: public void CopyFields(string[] fieldsIds) { ... } And I need to select