我如何知道使用 Jquery 选择了哪个单选按钮
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这篇文章解释了您的确切问题: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'));
您会得到
undefined
,因为checked
属性仅在选择元素时才存在。您可以像这样获取所选元素的值:
您可以通过多种方式检查特定元素是否被检查,例如:
或:
You get
undefined
because thechecked
attribute only exists when the element is selected.You can get the value of the selected element like this:
You can check if a specific element is checked in several way, for example:
or: