thinkphp實現全選的方法:1、建立一個前端範例檔案,並設定html按鈕;2、通過js程式碼「layui.use('form', function () {...}」實現資料全部勾選;3、開啟thinkphp檔案,通過「public function deleteAll(){...}」方法實現全選刪除操作即可。
php入門到就業線上直播課:進入學習
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API偵錯工具:
本教學操作環境:Windows7系統、ThinkPHP5版、Dell G3電腦。
thinkphp怎麼實現全選?
thinphp5+html全選和反選和多選後刪除
最近研究了下按鈕的多選,大家可以看看,話不多說上程式碼
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>
登入後複製
這個是跳到方法裡進行刪除
// 刪除全部
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');
}
}
登入後複製
推薦學習:《》
以上就是thinkphp怎麼實現全選的詳細內容,更多請關注TW511.COM其它相關文章!