スイート アラート 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");
});
確認ボタンをクリックしたら投稿を削除したい。コードを実装するにはどうすればよいですか? 助けてくれてありがとう:)