我有多排这样的单选框
<input id="m_0" type="radio" value="m" name="c_0">
<input id="f_0" type="radio" value="f" name="c_0">
<input id="m_1" type="radio" value="m" name="c_1">
<input id="f_1" type="radio" value="f" name="c_1">
<input id="m_2" type="radio" value="m" name="c_2">
<input id="f_2" type="radio" value="f" name="c_2">
所以,我想验证是否在每一行中都选择了收音机
我试过这样-if ($('input:radio[name="c_"+i]:checked').val()) {
其中 i = 0,1,2... 但它不起作用
知道如何将其更改为工作吗?谢谢。