mają 2 RadioButtonLists:ASP.Net RadioButtonList: jQuery uzyskać listitem wybrany
Are you a minor?: oYes oNo
Do you wish a joint account?: oYes oNo
Jeśli odpowiedź na 1 pytanie jest twierdząca, chcę wykryć odpowiedź na pierwsze pytanie i ustawić odpowiedź na drugie pytanie na tak, używając funkcji jQuery. Z góry dziękuję.
<asp:Label ID="lblMinfor" CssClass="boldIt" runat="server" Text="Is this account for a minor" Style="float: left; width: 200px;"></asp:Label><br />
<asp:RadioButtonList ID="rdlMinor" runat="server" RepeatDirection="Horizontal" Width="130px" Style="float: left;" BorderStyle="None" RepeatLayout="Flow"()>
<asp:ListItem>Yes</asp:ListItem>
<asp:ListItem Selected="True">No</asp:ListItem>
</asp:RadioButtonList>
<asp:Label ID="lblJoint" CssClass="boldIt" runat="server" Text="Is this for a joint account?" Style="float: left; width: 200px;"></asp:Label><br />
<asp:RadioButtonList ID="rdlJoint" runat="server" RepeatDirection="Horizontal" Width="130px" Style="float: left;" BorderStyle="None" RepeatLayout="Flow">
<asp:ListItem>Yes</asp:ListItem>
<asp:ListItem Selected="True">No</asp:ListItem>
</asp:RadioButtonList>
można zakładać HTML dla przycisków? – JaredPar
Wysłałem kod. – Susan