在表格行中使复选框唯一

时间:2019-05-10 22:29:01

标签: javascript php laravel checkbox laravelcollective

我有一个isActive列,其中使用Laravel中的php在foreach循环内动态生成一个复选框。该列位于具有一些行的表中,每一行都有自己的唯一ID。列(名称,地址,信息,活动信息)我已经做过一些研究,但似乎找不到解决方案。我想使复选框唯一,并想以某种方式将ID附加到复选框,以便我可以使用javascript来获取复选框的onchange状态,因为稍后我将将该值传递给数据库而无需按下提交按钮。提前致谢。

<label class="switch switch-3d switch-primary">
                    {!! Form::checkbox('is_active', old('is_active'), old('is_active'),
                    ['id' => 'is_active', "class"=>"form-control switch-input".($errors->has('is_active')?"
                    is-invalid":"")])
                    !!}
                    <span class="switch-label"></span>
                    <span class="switch-handle"></span>
</label>

0 个答案:

没有答案