如何在jquery中获取单选按钮列表的选定值?

前端之家收集整理的这篇文章主要介绍了如何在jquery中获取单选按钮列表的选定值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有单选按钮列表,其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();
原文链接:https://www.f2er.com/jquery/183608.html

猜你在找的jQuery相关文章