是否可以将所有选定的无线电计数到某个值?
我做到了:
if($('.giornal:checked').val() == 'option1'.length == 1) {
// something
}
答案 0 :(得分:1)
您可以在问题中共享时检查所有单选按钮,然后筛选匹配特定值的数组(此处为" 1")并获取长度
var res = $("input[type=radio]:checked").filter(function(){
return "1"==$(this).val()
})
console.log(res.length)

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="radio" checked value="1"/>
<input type="radio" checked value="1"/>
<input type="radio" checked value="3"/>
<input type="radio" value="4"/>
&#13;