Méthode Thinkphp pour réaliser toutes les sélections : 1. Créez un exemple de fichier frontal et définissez le bouton HTML ; 2. Utilisez le code js "layui.use('form', function () {...}" pour sélectionner toutes les données ;3. Ouvrez le fichier thinkphp et utilisez la méthode "public function deleteAll(){...}" pour tout supprimer
L'environnement d'exploitation de ce tutoriel : système Windows 7, ThinkPHP version 5. , ordinateur Dell G3.
Comment implémenter toutes les sélections dans thinkphp ?
thinphp5+html tout sélectionner et inverser la sélection et supprimer après une sélection multiple
J'ai récemment étudié la sélection multiple du bouton, vous pouvez en prendre un. écoute, pas grand chose à dire sur le code
bouton html
<input style="float: right;margin-left: 10px" type="checkbox" lay-skin="primary" id="c_all" lay-filter="c_all" title="全部"> <input style="float: right;margin-left: 10px" type="checkbox" lay-skin="primary" id="f_all" lay-filter="f_all" title="反选"> <input style="float:right;margin-top: 3.5px;margin-left:10px" type="button" id="btndelete" class="layui-btn layui-btn-sm" value="删除">
js
<!-- 多选删除 --> <script type="text/javascript"> $('#btndelete').click(function(){ var a = document.getElementsByName("cityId"); var b=[]; for(i in a){ if(a[i].checked) b.push(a[i].value); } if(b==""){alert('请选择数据删除')}else{ layer.confirm('确定要删除?', function(index) { window.location.href='/admin/commodity/deleteAll?b='+b; })} }) </script> <!-- 全选框 --> <script type="text/javascript"> layui.use('form', function () { var form = layui.form; //全选 form.on('checkbox(c_all)', function (data) { var a = data.elem.checked; if (a == true) { $(".cityId").prop("checked", true); form.render('checkbox'); } else { $(".cityId").prop("checked", false); form.render('checkbox'); } }); //反选 form.on('checkbox(f_all)', function (data) { var item = $(".cityId"); item.each(function () { if ($(this).prop("checked")) { $(this).prop("checked", false); } else { $(this).prop("checked", true); } }) form.render('checkbox'); }); //有一个未选中全选取消选中 form.on('checkbox(c_one)', function (data) { var item = $(".cityId"); for (var i = 0; i < item.length; i++) { if (item[i].checked == false) { $("#c_all").prop("checked", false); form.render('checkbox'); break; } } //如果都勾选了 勾上全选 var all=item.length; for (var i = 0; i < item.length; i++) { if (item[i].checked == true) { all--; } } if(all==0){ $("#c_all").prop("checked", true); form.render('checkbox');} }); }); </script>
Il s'agit de passer à la méthode pour supprimer
// 删除全部 public function deleteAll(){ $b=input('b'); // Db::name('excel')->where('id','in',$b)->delete(); if(false == Db::name('commodity')->where('id','in',$b)->delete()) { return $this->error('删除失败,请选择要删除的数据'); } else { return $this->success('删除成功','admin/commodity/index'); } }
Apprentissage recommandé : "tutoriel vidéo thinkPHP"
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!