Home >php教程 >php手册 >新手贴一段完整版本的批量删除代码,高手匆喷

新手贴一段完整版本的批量删除代码,高手匆喷

WBOY
WBOYOriginal
2016-06-07 11:41:021340browse

批量删除操作在于高手而言自然不在话,对于初级水平的人来说确实有点费劲,下面贴一段有关批量操作的全套代码,旨在抛砖引玉,共同提高!
前台代码:









无标题 5































悬停表格布局
编号 名称 城市 密码 时间 操作
{$vo.id} {$vo.test1}; {$vo.test2}; {$vo.test3}; {$vo.create_time|date="Y-m-d H:i:s",###} 修改
删除




<script><br /> $(function(){<br /> $("#checkall").click(function(){<br /> if($("#checkall").prop("checked")){<br /> $(":checkbox").prop("checked",true);<br /> }else{<br /> $(":checkbox").prop("checked",false);<br /> }<br /> <br /> }) <br /> <br /> })<br /> </script>


后台:
public function del_all($ids=array()){
if (IS_POST){
$ids=$_POST['id'];
// print_r($ids);exit;
$where['id']=array("in",$ids);
$result=M('test')->where($where)->delete();
if($result){
$this->success('操作成功!');
}else{
$this->error('操作失败!');
}
}
}

AD:真正免费,域名+虚机+企业邮箱=0元

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn