带有“其他”选项的单选按钮列表
关于如何创建一个带有用户输入自由文本选项的单选按钮列表,有什么建议吗?
这是我要寻找的内容的快速示例:
- 红色
- 蓝色
- 绿色
- 其他(文本框将位于此处)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以只有一个单选按钮列表,然后当在事件中选择“其他”时,设置启用文本框,否则如果它不是“其他”按钮,则将其禁用。
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.
看看
带有文本框的RadioButtonList
ASP.Net RadioButtonList 与
TextBox
类似这样的东西
Have a look at
RadioButtonList with TextBox
ASP.Net RadioButtonList with
TextBox
Something like this