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

发布于 2024-07-17 03:56:39 字数 49 浏览 8 评论 0原文

我有一个以 id 作为值的单选按钮列表,我想访问 jquery 函数中选定的 id。

I have radio button list which has id as the value, I want to access the selected id in the jquery function.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凑诗 2024-07-24 03:56:40

如果您的 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();

If you have HTML that looks like this:

<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'>

You would get the selected radio value with this:

$("input:radio[name='choices']:checked").val();
安静 2024-07-24 03:56:40

它将在单击按钮时获取单选按钮的选定值。
列表前

$("#btn").click(function() {
   $('input[type="radio"]:checked').val();
});

It will get the selected value of the radiobutton at button click.
ex for list

$("#btn").click(function() {
   $('input[type="radio"]:checked').val();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文