有人用过甜蜜警报js吗?我有个问题。
这是我删除 id_event 帖子的代码:
<a href="<?php echo base_url(); ?>admin/event/delete_event/<?php echo $row->id_event; ?>" title="delete"><i class="glyphicon glyphicon-trash" onClick="return(confirm('Are you sure?'));"></i></a>
我想使用甜蜜警报 js 进行删除确认。这是代码:
swal({
title: "Are you sure?",
text: "Your will not be able to recover this post!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
closeOnConfirm: false
},
function(){
swal("Deleted!", "Your post has been deleted.", "success");
});
当我单击确认按钮时,我想删除帖子。我如何实现代码?感谢您的帮助:)