如何知道在jQuery中选择了哪个单选按钮?
这个问题在这里已经有了答案:
var selectedValue = $("input[name=form]:checked").val();
你应该这样做:
var radio = jQuery('input[name="form"]:checked');
然后您可以检索您的无线电值或其他属性:
var value = radio.val();
在做这件事之前查看是否有任何收音机被检查是个好主意:
if (radio != undefined)
{
//do what you need to
}
另外,你也可以试试这个 -
$(".modal-body input[type=radio]").each(function(){
if (this.checked)
{
console.log(this.value+" is checked");
}
});
链接地址: http://www.djcxy.com/p/24573.html
上一篇: How to know which radio button is selected in jquery?
下一篇: shared takes in a const reference. Any way to get around this?