如何获取选定的输入:radio
怎么会这样呢。
$('input:checked')
这不会吗?
$('input').is(':checked')
谢谢。
How come this works.
$('input:checked')
and this won't?
$('input').is(':checked')
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
第二个版本应该使用
.filter()
而不是.is()
。似乎
.is()
应该可以工作,因为有 a.not()
方法。但.not()
实际上与.filter()
相反。The second version should use
.filter()
instead of.is()
.It seems like
.is()
should work since there's a.not()
method. But.not()
is actually the opposite of.filter()
.您想检查页面上的任何单选按钮是否被选中?无需这样做,总有一个被选中(单选按钮 = 恰好选择了一个选项)。
想要测试是否选择了具有特定 ID 的单选按钮?
想要所有选中的单选按钮的列表吗?这将返回一个包含无线电输入的 jQuery 对象。
如果您想将其限制为具有特定名称的输入:
You want to check if any radio button on the page is selected? No need to do that, there's always one that's selected (radio button = exactly one option selected).
Want to test if a radio button with a certain ID is selected?
Want a list of all checked radio buttons? This returns a jQuery object containing the radio inputs.
If you want to restrict it to inputs with a certain name:
定义作品。一个返回列表,另一个返回布尔值。
Define works. One returns a list and the other returns a boolean.
你可以试试这个。它有效并且有效。也测试过。
或者
您可以从此示例获得帮助
http://daxpanganiban.com/javascript/get-value-of -radio-button-using-jquery
干杯!
You can try this one.Its worked & tested also.
Or
You can get help from this sample
http://daxpanganiban.com/javascript/get-value-of-radio-button-using-jquery
Cheers!
试试这个:
Try this: