我想在删除数据之前使用删除模式弹出窗口。我尝试使用bootstrap模式,但它不起作用。然后我用删除按钮传递我的数据,但是我想要一个弹出窗口,然后删除细节。
我在没有任何弹出窗口的情况下尝试了这个。这会在按钮单击时删除数据。这是我从查看删除按钮的详细信息。
<a class="btn btn-danger" href="update.php?id=<?php echo $value['id'];?>&firstname=<?php echo $value['firstname'];?>&lastname=<?php echo $value['lastname'];?>&age=<?php echo $value['age'];?>" role="button" id="delete" style="margin-left: 10px;">Delete</a>
当这个按钮点击模态弹出窗口并询问是否要删除时,我想这样做。我试过这个bootstrap模式。
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
Delete
</button>
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
如何使用此模式更正我的代码。谁能帮我。我想要当模态是按钮点击然后删除数据。