値として id を持つラジオ ボタン リストがあり、jquery 関数で選択した id にアクセスしたい。
76755 次
2 に答える
79
次のような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();
于 2009-04-13T04:59:50.480 に答える
8
ボタンのクリック時にラジオボタンの選択された値を取得します。
リストの例
$("#btn").click(function() {
$('input[type="radio"]:checked').val();
});
于 2013-08-26T08:50:05.470 に答える