最新消息: 新版网站上线了!!!

thinkphp删除前弹出确认框

html
<
a href="__URL__/shanchu/id/{$vo.id}" onclick='return del();'>删除</a>
javascript 
<script>
function del()
{
    if(confirm("确定要删除吗?"))
    {
        return true;
    }
    else
    {
        return false;
    }
}
</script>
 控制器
public  function shanchu()
{
    $id=$this->_request('id');
    if($id)
    {
        $user=M('user');
        $data['id']=$id;
        $rs=$user->where($data)->delete();
        if($rs)
        {
            $this->success('删除成功!');
        }
        else
        {
            $this->error('删除失败!');
        }
    }
    else
    {
        $this->error('删除失败!');
    }
}

转载请注明:谷谷点程序 » thinkphp删除前弹出确认框