您好,登錄后才能下訂單哦!
這篇“thinkphp如何實現全選功能”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“thinkphp如何實現全選功能”文章吧。
thinkphp實現全選的方法:1、創建一個前端示例文件,并設置html按鈕;2、通過js代碼“layui.use('form', function () {...}”實現數據全部勾選;3、打開thinkphp文件,通過“public function deleteAll(){...}”方法實現全選刪除操作即可。
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如何實現全選功能”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。