代码之家  ›  专栏  ›  技术社区  ›  Jim B

带“其他”选项的RadioButton列表

  •  0
  • Jim B  · 技术社区  · 16 年前

    下面是我想要的一个快速示例:

    • 红色
    • 绿色
    2 回复  |  直到 16 年前
        1
  •  0
  •   Adriaan Stander    16 年前

    看看

    像这样的

    <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>
    
        2
  •  1
  •   Adam Gritt    16 年前

    您可以只拥有一个单选按钮列表,然后在事件集中选择Other时,启用文本框,否则如果它不是Other按钮,则禁用它。