我有单选作为值的单选按钮列表,我想在jquery函数中访问所选的id。
答案 0 :(得分:70)
如果你的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();
答案 1 :(得分:8)
按钮点击后,它将获得无线电按钮的选定值 ex for list
$("#btn").click(function() {
$('input[type="radio"]:checked').val();
});