스윗알럿 자주쓰는거 메모
마스터욱
0
31
0
0
2020-06-22 23:51:52
swal({
title : "확인",
text : "결제 하시겠습니까?",
icon : "info",
buttons: {
confirm : {text:'확인',className:'sweet-warning'},
cancel : '취소'
},
})
.then((confirm_ok) => {
if(confirm_ok)
{
$('#fog').show();
$.post("", {}, function(res){
if(res.msg)
{
swal({
text : res.msg,
icon : "warning",
buttons : ["확인"],
});
}
if(res.result)
{
location.reload();
}
$("#fog").hide();
}, "json");
}
});