带有“其他”选项的单选按钮列表

发布于 2024-08-15 02:40:30 字数 136 浏览 9 评论 0原文

关于如何创建一个带有用户输入自由文本选项的单选按钮列表,有什么建议吗?

这是我要寻找的内容的快速示例:

  • 红色
  • 蓝色
  • 绿色
  • 其他(文本框将位于此处)

Any suggestions on how I would create a radio button list with an option for the user to input free text?

Here's a quick sample of what i'd be looking for:

  • Red
  • Blue
  • Green
  • Other (textbox would go here)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

ら栖息 2024-08-22 02:40:30

您可以只有一个单选按钮列表,然后当在事件中选择“其他”时,设置启用文本框,否则如果它不是“其他”按钮,则将其禁用。

You could just have a Radio Button list and then when Other is selected in the event set the text box enabled otherwise disable it if it isn't the Other button.

旧伤慢歌 2024-08-22 02:40:30

看看

类似这样的东西

<asp:RadioButtonList ID="rdo" Runat="server">
    <asp:ListItem>First</asp:ListItem>
    <asp:ListItem>Second</asp:ListItem>
    <asp:ListItem>Others <input type="text" name="txtOthers"></asp:ListItem>
</asp:RadioButtonList>

Have a look at

Something like this

<asp:RadioButtonList ID="rdo" Runat="server">
    <asp:ListItem>First</asp:ListItem>
    <asp:ListItem>Second</asp:ListItem>
    <asp:ListItem>Others <input type="text" name="txtOthers"></asp:ListItem>
</asp:RadioButtonList>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文