在我的 Jsp 中,我有两个单选按钮 rb1 和 rb2 以及两个文本框 txt1 和 txt2 ...
每当检查 rb2 时,如何禁用我的文本框 txt2?
这是我的代码:
<asp:TextBox runat="server" ID="txt1""></asp:TextBox>
<asp:TextBox runat="server" ID="txt2"></asp:TextBox>
<asp:RadioButton ID="rb1" Text="hello" runat="server" />
<asp:RadioButton ID="rb2" Text="world" runat="server" />