如何获取 html.dropdownlistfor 的选定索引

发布于 2024-10-08 07:55:26 字数 300 浏览 3 评论 0原文

我有一个下拉列表:

<%= 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼中杀气 2024-10-15 07:55:26

仅当您将提交的值与原始列表进行比较,或在提交上使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文