2017-04-08 13 views
1

私は、ラジオボタンを2つ選択し、ラジオボタンを選択してテキストを入力します。対応するラジオボタンからの入力テキストの取得

質問:選択したラジオボタンの入力テキストを取得するにはどうすればよいですか?

+1

英語でお願いします。 – LGSon

+1

「最小限の、完全で検証可能な例」を提供してください。 https://stackoverflow.com/help/mcve –

答えて

0
<div class="form-group"> 
<label for="textNome" class="control-label">Type text</label> 
</div> 
<div class="radio"> 
<label><input type="radio" name="mode" value="one" checked /> Selection 
1</label> 
<input id="end" class="form-control" type="text"> 
</div> 
<div class="radio"> 
<label><input type="radio" name="mode" value="two"checked /> Selection 
2</label> 
<input id="end" class="form-control" type="text"> 
</div> 
0

あなたはこのjQueryのを使用して試みることができる:これらは、ラジオボタンなので、あなたがcheckedとして両方にラベルを付けるべきではないことに注意して

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

クマを。

関連する問題