如何自动选中和取消选中复选框

时间:2017-05-02 02:11:08

标签: php laravel laravel-5

我正在做一个页面,我可以用复选框显示数据列表。然后我会自动检查数据库,如果有数据,将选中复选框。我现在要做的是,让我们自动选中复选框,当我自己取消选中并保存时,它会更新数据库中的数据。

我的编码示例:

<form action="{{URL::to('/granted/'.$d->id)}}" method="get">
    <input name="_token" type="hidden" value="{{ csrf_token() }}"/>
    @foreach($var as $v)
    <table style="margin-left:20px;">
         <caption>{{$v->module_groupname}}</caption>
         @foreach($name as $n)
         <?php if($n->module_groupname == $v->module_groupname){?>
         <tr><td width="80"><input type="checkbox" name="module_code[]" value="{{ $n->module_code }}"
         <?php foreach($priv as $p){
         if($p->user_id == $d->id){
             if($p->module_code == $n->module_code){
                 echo 'checked="checked"';
             }
         }
     }?>></td>
     <td width="150">{{$n->module_groupname}}</td>
     <td width="200">{{ $n->module_desc}}</td>
    </tr> <?php } ?>
 @endforeach
</table>
<hr>
@endforeach
<input type="submit" value="select" class="btn btn-s btn-success">
</form>

我被建议查找PLUS语句oracle但我找不到

3 个答案:

答案 0 :(得分:0)

自动检查您需要设置为该复选框选中的属性

https://www.w3schools.com/tags/att_input_checked.asp

通过js这样做你跟着这个网址!说setAttribute属性

https://www.w3schools.com/jsref/met_element_setattribute.asp

希望这会对你有所帮助

答案 1 :(得分:0)

<input type="checkbox" @if(compare) checked @endif />

答案 2 :(得分:0)

我建议您查看此代码并尝试重新格式化您自己的代码。 您正在使用刀片,因此无处不在。

<form action="{{URL::to('/granted/'.$d->id)}}" method="get">
{{ csrf_field() }}
@foreach($var as $v)
    <table style="margin-left:20px;">
        <caption>{{$v->module_groupname}}</caption>
        @foreach($name as $n)
            @if($n->module_groupname == $v->module_groupname)
                <tr>
                    <td width="80"><input type="checkbox" name="module_code[]" value="{{ $n->module_code }}" {{ $priv->contains('user_id', $d->id) && $priv->contains('module_code', $n->module_code) ? 'checked' : '' }}></td>
                    <td width="150">{{$n->module_groupname}}</td>
                    <td width="200">{{ $n->module_desc}}</td>
                </tr>
            @endif
        @endforeach
    </table>
    <hr>
@endforeach
<input type="submit" value="select" class="btn btn-s btn-success">

如果您的$ prev变量是模型,我认为您可以使用contains函数。

我没有测试此代码,所以试试它是否有效