2
Sweet Alertライブラリを使用して警告を出そうとしています。 アイテムを削除するための確認アラートを作成するためのコードを統合しようとしましたが、アイテムを削除するためのボタンをクリックすると、これらは機能しません。ダイアログは表示されません。甘い警告ダイアログを表示していません
コードスウィートアラートを統合前:スウィートアラートを統合後
$(".delete-link").click(function() {
var id = $(this).attr("id");
var del_id = id;
var parent = $(this).parent("td").parent("tr");
if (confirm('Sure to Delete ID no = ' + del_id)) {
$.post('delete.php', { 'del_id': del_id }, function(data) {
parent.fadeOut('slow');
});
}
return false;
});
コード:
$(".delete-link").click(function() {
var id = $(this).attr("id");
var del_id = id;
var parent = $(this).parent("td").parent("tr");
});
swal({
title: "Are you sure you want to delete?",
text: "Sure to Delete ID no = " + del_id,
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes",
closeOnConfirm: false
},
function() {
$.post('delete.php', { 'del_id': del_id }, function(data) {
parent.fadeOut('slow');
});
});
return false;
});
コンソールでエラーが発生していますか? –
いいえ私はthibkコードに問題がありますが、私は今どこに – marte