gpt4 book ai didi

asp.net - 如何将标签元素与单选按钮关联

转载 作者:行者123 更新时间:2023-12-02 06:40:27 26 4
gpt4 key购买 nike

我的表单中有一些选项按钮,我总是需要准确单击圆形选项按钮才能选择它。有没有办法让用户单击关联的标签来选择选项按钮?

enter image description here

<p>
<span class="editor-label">
@Html.LabelFor(m => m.ADR)
</span>
<span class="editor-field">
@Html.RadioButtonFor(model => model.ADR, "Yes", AdrYesOptions)
@UserResource.YesValue
@Html.RadioButtonFor(model => model.ADR, "No", AdrNoOptions)
@UserResource.NoValue

</span>
</p>

我在这里找到了一些解决方案:How to associate labels with radio buttons但这些不适合我,因为我更喜欢专门针对 MVC 的解决方案。

最佳答案

将每个单选按钮和关联的标签文本包装在 <label> 中元素:

<p>
<span class="editor-label"> @Html.LabelFor(m => m.ADR) </span>
<span class="editor-field">
<label> @Html.RadioButtonFor(model => model.ADR, "Yes", AdrYesOptions) @UserResource.YesValue </label>
<label> @Html.RadioButtonFor(model => model.ADR, "No", AdrNoOptions) @UserResource.NoValue </label>
</span>
</p>

关于asp.net - 如何将标签元素与单选按钮关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9545633/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com