删除确认弹出,jquery,bootstrap

时间:2017-03-20 18:54:53

标签: php jquery popup

我试图弹出一个说(“你确定要删除吗?”)并且有OK - CANCEL选项..

这是我的删除按钮:

<a href='borrar.php?borrar=1&iden=".$row['id']."'><button type='button' class='btn btn-danger'>BORRAR</button></a>

这是“删除”功能

   <?php include('connect.php'); 

    $error="";

    if(isset($_GET['borrar']))
{
        $ident=$_GET['iden'];
        $delete=mysql_query("DELETE FROM materias WHERE id=$ident");
    if($delete)
        header("location:hola.php");
        else
            $msg='ERROR : '.mysql_error();
}



?>

我想使用bootstrap进行弹出,我不知道:/。

希望你能帮助我:)。

谢谢!

2 个答案:

答案 0 :(得分:1)

You can do it by ajax also by following this code :
function deleteRecord(user_id)
{
    if(confirm('Sure To Remove This Record ?'))
     {
        $.ajax({
                type: 'POST',
                url: 'delete page name',
                data:  {user_id: user_id},
                dataType: "text",
                success: function (data) 
                {
                    location.reload();
                },
                error: function(error)
                {
                }
                });

     }
}

在这样的html调用函数中:

 <button onclick="deleteRecord(<?php echo $user_id ?>);" type="submit" class="btn btn-warning btn-xs"><i class="fa fa-power-off" aria-hidden="true"></i></button>

html页面可能如下: enter image description here

答案 1 :(得分:0)

一个简单的JavaScript代码

<a href='borrar.php?borrar=1&iden=".$row['id']."' onclick="return confirm('are you sure you want to delele?')"><button type='button' class='btn btn-danger'>BORRAR</button></a>