値としてidを持つラジオボタンリストがあります。jquery関数で選択したidにアクセスします。
次のようなHTMLがある場合:
<input type='radio' name='choices' value='1'>
<input type='radio' name='choices' value='2'>
<input type='radio' name='choices' value='3'>
<input type='radio' name='choices' value='4'>
<input type='radio' name='choices' value='5'>
これで選択されたラジオ値を取得します:
$("input:radio[name='choices']:checked").val();
ボタンをクリックすると、ラジオボタンの選択値が取得されます。
ex for list
$("#btn").click(function() {
$('input[type="radio"]:checked').val();
});