如何在 ASP.NET MVC 中实现复选框列表?
刚刚从 WebForms 迁移到 MVC 并替换了各种用户界面。不确定 WebForms CheckListBox 是如何实现的,是否有 jQuery 插件或基本示例?
Just moved from WebForms to MVC and replacing various userinterfaces. Not sure how the WebForms CheckListBox is implemented, is there a jQuery plugin or a basic example of this somewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您对 jQuery 的需求,我经常使用与此类似的模板。 (您应该能够将 jQuery 事件连接到此;我现在将其保留为基本模板。)
(一旦我开始工作并查看我的真实代码,我可能会在几个小时内完善此答案,但它应该可以帮助您入门。)
您的操作方法将采用一个
bool
数组作为myObjectSelections
参数。Depending on your need for jQuery, a template similar to this is what I routinely use. (You should be able to wire up jQuery events to this; I'm keeping this to a basic template for now.)
(I may refine this answer in a couple hours once I'm at work and see my real code for this, but it should get you started.)
Your action method for this will take an array of
bool
s for themyObjectSelections
argument.