Get input text from corresponding radio button

时间:2017-04-08 22:32:27

标签: javascript jquery html

I have two radio buttons with an input text for each radio button, where a person selects a radio button and enters text.

The question is: How do I get the typed text for the selected radio button?

2 个答案:

答案 0 :(得分:0)

public void WijzigenKlantGegevens(string voornaam, string achternaam, string postcode, string straatnaam, int huisnummer, string woonplaats, string IBAN)
{
    tbVoornaam.Text = voornaam;
    tbAchternaam.Text = achternaam;
    tbPostcode.Text = postcode;
    tbStraatnaam.Text = straatnaam;
    tbHuisnummer.Text = huisnummer.ToString();
    tbwoonplaats.Text = woonplaats;
    tbIBAN.Text = IBAN;
    this.Show();
}

答案 1 :(得分:0)

你可以尝试使用jQuery:

console.log($("input[type='radio']:checked").next());

请记住,由于这些是单选按钮,因此不应将它们标记为checked