我在数组中有多个具有相同名称的单选按钮,并且具有与1

时间:2018-07-27 06:34:21

标签: php html arrays

我在数组中有多个单选按钮名称,所有单选按钮名称的值均等于1。 我需要获取是否将uncheck表示设置为零,我该怎么做。下面是我的代码

查看图片its sample image but same form like i having

html代码

<input type="radio" name="radio_name[]" id="radi_name" value="1" checked >
<label for="radio1">Set as Default</label>

PHP代码

$a[]=$_post['radio_name'];
prinr_r($a);

当前结果

Array ( [0] => 1 )

预期结果

Array ( [0] => 1,[1] => 0,[2] => 0,[3] => 0 )

我只检查了一个单选按钮,其余所有都需要清零。

1 个答案:

答案 0 :(得分:0)

使用它。

    <form method='post' id='userform' action='test2.php'> <tr>
        <td>Trouble Type</td>
        <td>
        <input type='checkbox' name='checkboxvar[]' class="check" value='1'>1<br>
        <input type='checkbox' name='checkboxvar[]' class="check"  value='1'>2<br>
        <input type='checkbox' name='checkboxvar[]'  class="check"  value='1'>3
        </td> </tr> </table> <input type='button' class='buttons'> </form>

<script type="text/javascript">
        $(document).ready(function(){
            $('.buttons').click(function(){
                var checkbox_arr = [];
                $('.check').each(function(){
                    checkbox_arr.push(+$(this).is( ':checked' ));
                });
                console.log(checkbox_arr);
            });
        });
    </script>