我如何知道使用 Jquery 选择了哪个单选按钮

发布于 2024-10-31 05:44:28 字数 326 浏览 1 评论 0原文

<input type="radio" id="radio1" name="rb1" value="no"> No
<input type="radio" id="radio2" name="rb1" value="yes"> Yes

当我说这个 alert("Test ==="+$('#radio1').attr('checked')); 我期望 false 因为它没有被检查,但是它返回未定义

正确的说法是什么? 为什么我得到未定义

<input type="radio" id="radio1" name="rb1" value="no"> No
<input type="radio" id="radio2" name="rb1" value="yes"> Yes

when I say this alert("Test =="+$('#radio1').attr('checked')); I expect false because it's not checked but it returns undefined.

What is the correct statement?
Why am I getting undefined?

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

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

发布评论

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

评论(3

静若繁花 2024-11-07 05:44:28

这篇文章解释了您的确切问题:http://forum.jquery。 com/topic/checking-if-certain-radiobutton-is-checked

即您需要使用:alert($('#radio1').is(':checked'));

This post explains your exact problem: http://forum.jquery.com/topic/checking-if-certain-radiobutton-is-checked

i.e. you need to use this: alert($('#radio1').is(':checked'));

纵情客 2024-11-07 05:44:28

您会得到 undefined,因为 checked 属性仅在选择元素时才存在。

您可以像这样获取所选元素的值:

$('input[name=rb1]:checked').val()

您可以通过多种方式检查特定元素是否被检查,例如:

if ($('#radio1:checked').length) ...

或:

if ($('#radio1').is(':checked')) ...

You get undefined because the checked attribute only exists when the element is selected.

You can get the value of the selected element like this:

$('input[name=rb1]:checked').val()

You can check if a specific element is checked in several way, for example:

if ($('#radio1:checked').length) ...

or:

if ($('#radio1').is(':checked')) ...
蔚蓝源自深海 2024-11-07 05:44:28
// checked value
var value = $("input[@name=rb1]:checked").val();

alert("Test == " + $('#radio1').val() == value );
// checked value
var value = $("input[@name=rb1]:checked").val();

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