我有单选按钮列表,其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();