ラジオがチェックされている特定の名前のラジオグループの値を取得しようとしています。
しかし、それは私に価値を与えません。
これがそのフィドルです:http://jsfiddle.net/qmHm7/
HTML:
<input type="radio" name="txtCorrectAnswer" value="1">
<input type="radio" name="txtCorrectAnswer" value="2">
<input type="radio" name="txtCorrectAnswer" value="3">
<button id="test">Test</button>
Jクエリ:
$(document).on('click', '#test', function () {
$('input:radio[name=txtCorrectAnswer]:checked').val();
});
これを修正するための良い提案はありますか?