如何获取 html.dropdownlistfor 的选定索引
我有一个下拉列表:
<%= Html.DropDownListFor(model => model.OperatingSystem, Model.OperatingSystemDropDownBowValues, new { style = "width:142px; margin-left: 10px; font-size: 11px;" })%>
是否可以获取某些项目的索引? 我需要验证一个表单,如果首先(默认=“选择...”)下拉列表项被选择(不是由用户),那么它不是保存其他表单值的方法。
i have a dropdownlist:
<%= Html.DropDownListFor(model => model.OperatingSystem, Model.OperatingSystemDropDownBowValues, new { style = "width:142px; margin-left: 10px; font-size: 11px;" })%>
is it possible to get index of some item?
i need validate a form, if first (default = "Choose...") dropdownlist item is selected(not by user) then its not way to save other form values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当您将提交的值与原始列表进行比较,或在提交上使用 JavaScript/JQuery 时。
您可以将“选择...”选项的值添加为空字符串吗?
如果您可以设置“选择...”的值,那么您可以选择下拉元素的返回值
isnullorempty
[Required]
属性应该适用于该元素也被提交。干杯
Only if you compare the submitted value with the original list, or use JavaScript/JQuery on the submission.
Can you add the value of the "Choose..." option as an empty string?
If you can set the Value of the "Choose..." then you could pick up the value return of you dropdown element
isnullorempty
The
[Required]
attribute should work with that being sumitted too.Cheers