私はあなたに -私のウェブサイトのSweetAlert . ここで、このコードを使用して SweetAlert を構成する必要があります。これにより、[OK] ボタンをクリックすると、POST formaction="/link/link" post="test=1" を介して送信されます。
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: " warning ",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
cancelButtonText: " No, cancel plx!",
closeOnConfirm: false,
closeOnCancel: false
}, function(isConfirm) {
if (isConfirm) {
swal("Deleted!", "Your imaginary file has been deleted.", "success");
} else {
swal("Cancelled", "Your imaginary file is safe: ) ", " error ");
}
});
お聞きしたいのですが、どうやって組み込むことができますか。