ajax批删
Posted azzy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax批删相关的知识,希望对你有一定的参考价值。
<td><input type="checkbox" name="bb" value="{{$v->id}}"> {{$v->id}}</td>
<button id="pi">批删</button>
//批量刪除
$(document).on("click","#pi",function () {
nam=document.getElementsByName("bb");
str="";
for (i=0;i<nam.length;i++){
if (nam[i].checked==true){
str+=","+nam[i].value;
}
}
id=str.substr(1);
$.ajax({
url:"shan",
type:"post",
dataType:"json",
data:{
id:id
},
success:function (data) { console.log(data);
if (data==1){
location.href=""
}
}
})
})
function shan(req $req){
$id= $req->post("id");
$id=explode(",",$id);
foreach ($id as $k=>$v){
$res= DB::table("poker")->delete($v);
}
return 1;
}
以上是关于ajax批删的主要内容,如果未能解决你的问题,请参考以下文章