//삭제할경우
if (confirm("정말 삭제하시겠습니까?") == true){
    ....
    alert('삭제되었습니다');
}else{
    alert('삭제를 취소하셨습니다');
}

+ Recent posts