source

삭제하기 전에 확인 메시지를 표시하는 방법

factcode 2022. 9. 17. 09:33
반응형

삭제하기 전에 확인 메시지를 표시하는 방법

[삭제]를 클릭하면 확인 메시지가 나타납니다(버튼이나 이미지일 수 있습니다).사용자가 '를 선택한 경우Ok'이 경우 삭제가 완료됩니다.그렇지 않으면 다음과 같습니다.Cancel를 클릭하면 아무 일도 일어나지 않습니다.

버튼을 클릭했을 때 반향을 시도했지만, 반향을 일으켜 입력함과 텍스트 박스의 스타일과 디자인이 없어졌습니다.

여기에 기입해 주세요.onclick버튼 이벤트:

var result = confirm("Want to delete?");
if (result) {
    //Logic to delete the item
}

다음과 같이 사용하는 것이 좋습니다.

 <a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>

이것은 눈에 띄지 않는 JavaScript 및 확인 메시지가 HTML에 저장되어 있을 때 수행하는 방법입니다.

<a href="/delete" class="delete" data-confirm="Are you sure to delete this item?">Delete</a>

이것은 순수 바닐라 JS이며 IE 9+와 호환됩니다.

var deleteLinks = document.querySelectorAll('.delete');

for (var i = 0; i < deleteLinks.length; i++) {
  deleteLinks[i].addEventListener('click', function(event) {
      event.preventDefault();

      var choice = confirm(this.getAttribute('data-confirm'));

      if (choice) {
        window.location.href = this.getAttribute('href');
      }
  });
}

실제 상황 보기: http://codepen.io/anon/pen/NqdKZq

function ConfirmDelete()
{
  return confirm("Are you sure you want to delete?");
}


<input type="button" onclick="ConfirmDelete()">

그것은 매우 간단하고 한 줄의 코드이다.

<a href="#" title="delete" class="delete" onclick="return confirm('Are you sure you want to delete this item')">Delete</a>

이거 먹어봐.난 괜찮아

 <a href="delete_methode_link" onclick="return confirm('Are you sure you want to Remove?');">Remove</a>

사용자 1697128에서 개선(아직 코멘트를 할 수 없기 때문에)

<script>
    function ConfirmDelete()
    {
      return confirm("Are you sure you want to delete?");
    }
</script>    
    
<button Onclick="return ConfirmDelete();" type="submit" name="actiondelete" value="1"><img src="images/action_delete.png" alt="Delete"></button>

취소를 누르면 양식 제출이 취소됩니다.

이 작업을 수행하는 방법을 제안합니다.

<form action="/route" method="POST">
<input type="hidden" name="_method" value="DELETE"> 
<input type="hidden" name="_token" value="the_token">
<button type="submit" class="btn btn-link" onclick="if (!confirm('Are you sure?')) { return false }"><span>Delete</span></button>
</form>

다음과 같이 단순화할 수 있습니다.

<button onclick="return confirm('Are you sure you want to delete?');" />

css 포맷이 완료된 빠르고 예쁜 솔루션에 관심이 있다면 Sweet Alert를 사용할 수 있습니다.

$(function(){
  $(".delete").click(function(){
      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!",   
          closeOnConfirm: false 
      }).then(isConfirmed => { 
        if(isConfirmed) {
          $(".file").addClass("isDeleted");
          swal("Deleted!", "Your imaginary file has been deleted.", "success"); 
}
        });
  });
});
html { zoom: 0.7 } /* little "hack" to make example visible in stackoverflow snippet preview */
body > p { font-size: 32px }

.delete { cursor: pointer; color: #00A }
.isDeleted { text-decoration:line-through }
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="http://t4t5.github.io/sweetalert/dist/sweetalert.css">

<p class="file">File 1 <span class="delete">(delete)</span></p>

HTML

<input onclick="return myConfirm();" type="submit" name="deleteYear" class="btn btn-danger" value="Delete">

자바스크립트

<script>
function myConfirm() {
  var result = confirm("Want to delete?");
  if (result==true) {
   return true;
  } else {
   return false;
  }
}

HTML:

<a href="#" class="delete" data-confirm="Are you sure to delete this item?">Delete</a>

jQuery 사용:

$('.delete').on("click", function (e) {
    e.preventDefault();

    var choice = confirm($(this).attr('data-confirm'));

    if (choice) {
        window.location.href = $(this).attr('href');
    }
});
<form onsubmit="return confirm('Are you sure?');" />

폼에 적합합니다. 고유의 질문: JavaScript Form Submit - Confirm or Cancel Submission 대화 상자

<a href="javascript:;" onClick="if(confirm('Are you sure you want to delete this product')){del_product(id);}else{ }" class="btn btn-xs btn-danger btn-delete" title="Del Product">Delete Product</a>

<!-- language: lang-js -->
<script>
function del_product(id){
    $('.process').css('display','block');
    $('.process').html('<img src="./images/loading.gif">');
    $.ajax({
        'url':'./process.php?action=del_product&id='+id,
        'type':"post",
        success: function(result){
            info=JSON.parse(result);
            if(result.status==1){
                setTimeout(function(){
                    $('.process').hide();
                    $('.tr_'+id).hide();
                },3000);
                setTimeout(function(){
                    $('.process').html(result.notice);
                },1000);
            } else if(result.status==0){
                setTimeout(function(){
                    $('.process').hide();
                },3000);
                setTimeout(function(){
                    $('.process').html(result.notice);
                },1000);
            }
        }
    });
}
</script>

연습

<form name=myform>
<input type=button value="Try it now" 
onClick="if(confirm('Format the hard disk?'))
alert('You are very brave!');
else alert('A wise decision!')">
</form>

웹 원본:

http://www.javascripter.net/faq/confirm.htm

php & mysql에서 삭제 시 컨피규레이션메시지를 설정하다

다음 스크립트 코드 사용:

<script>
    function Conform_Delete()
    {
       return conform("Are You Sure Want to Delete?");
    }
</script>

다음 HTML 코드를 사용합니다.

<a onclick="return Conform_Delete()" href="#">delete</a>
var txt;
var r = confirm("Press a button!");
if (r == true) {
   txt = "You pressed OK!";
} else {
   txt = "You pressed Cancel!";
}

var txt;
var r = confirm("Press a button!");
if (r == true) {
    txt = "You pressed OK!";
} else {
    txt = "You pressed Cancel!";
}

function confirmDelete()
{
var r=confirm("Are you sure you want to delte this image");
if (r==true)
{
//User Pressed okay. Delete

}
else
{
//user pressed cancel. Do nothing
    }
 }
<img src="deleteicon.png" onclick="confirmDelete()">

삭제할 항목을 결정하기 위해 confirmDelete를 사용하여 일부 데이터를 전달할 수 있습니다.

jQuery 사용:

$(".delete-link").on("click", null, function(){
        return confirm("Are you sure?");
    });

이게 오래됐다는 건 알지만, 나는 답이 필요했지만, 알페쉬의 대답은 나에게 효과가 있었고, 같은 문제를 가지고 있을지도 모르는 사람들과 공유하고 싶었다.

<script>    
function confirmDelete(url) {
    if (confirm("Are you sure you want to delete this?")) {
        window.open(url);
    } else {
        false;
    }       
}
</script>

일반 버전:

<input type="button" name="delete" value="Delete" onClick="confirmDelete('delete.php?id=123&title=Hello')">

내 PHP 버전:

$deleteUrl = "delete.php?id=" .$id. "&title=" .$title;
echo "<input type=\"button\" name=\"delete\" value=\"Delete\" onClick=\"confirmDelete('" .$deleteUrl. "')\"/>";

이것은 공공장소에서 하는 올바른 방법이 아닐 수도 있지만, 개인 사이트에서는 효과가 있었습니다.:)

매우 간단합니다.

function archiveRemove(any) {
    var click = $(any);
    var id = click.attr("id");
    swal.fire({
        title: 'Are you sure !',
           text: "?????",
           type: 'warning',
           showCancelButton: true,
           confirmButtonColor: '#3085d6',
           cancelButtonColor: '#d33',
           confirmButtonText: 'yes!',
           cancelButtonText: 'no'
    }).then(function (success) {
        if (success) {
            $('a[id="' + id + '"]').parents(".archiveItem").submit();
        }
    })
}
function del_confirm(msg,url)
        {
            if(confirm(msg))
            {
                window.location.href=url
            }
            else
            {
                false;
            }

        }



<a  onclick="del_confirm('Are you Sure want to delete this record?','<filename>.php?action=delete&id=<?<id> >')"href="#"></a>
<SCRIPT LANGUAGE="javascript">
function Del()
{
var r=confirm("Are you sure?")
if(r==true){return href;}else{return false;}
}
</SCRIPT>

링크를 클릭해당신의 링크:

<a href='edit_post.php?id=$myrow[id]'> Delete</a>

함수 호출 후 온클릭 핸들러가 false를 반환해야 합니다.예를 들면.

onclick="ConfirmDelete(); return false;">

가장 간단한 솔루션은 다음과 같습니다.

링크:

<a href="http://link_to_go_to_on_success" class="delete">Delete</a>

Javascript:

$('.delete').click(function () {
    return confirm("Are you sure?");
});
<a href="javascript:;" onClick="if(confirm('Are you sure you want to delete this product')){del_product(id);}else{ }" class="btn btn-xs btn-danger btn-delete" title="Del Product">Delete Product</a>


function del_product(id){
    $('.process').css('display','block');
    $('.process').html('<img src="./images/loading.gif">');
    $.ajax({
        'url':'./process.php?action=del_product&id='+id,
        'type':"post",
        success: function(result){
            info=JSON.parse(result);
            if(result.status==1){
            setTimeout(function(){
                    $('.process').hide();
                    $('.tr_'+id).hide();
                },3000);
                setTimeout(function(){
                    $('.process').html(result.notice);
                },1000);
            }else if(result.status==0){
                setTimeout(function(){
                    $('.process').hide();
                },3000);
                setTimeout(function(){
                    $('.process').html(result.notice);
                },1000);

                }
            }
        });
}

다음은 className을 사용하여 이벤트를 바인딩하는 순수 JS의 다른 간단한 예입니다.

var eraseable =  document.getElementsByClassName("eraseable");

for (var i = 0; i < eraseable.length; i++) {
    eraseable[i].addEventListener('click', delFunction, false); //bind delFunction on click to eraseables
}

function delFunction(){        
     var msg = confirm("Are you sure?");      
     if (msg == true) { 
        this.remove(); //remove the clicked element if confirmed
    }   
  };
<button class="eraseable">
<img class="eraseable" src="http://zelcs.com/wp-content/uploads/2013/02/stackoverflow-logo-dumpster.jpg" style="width:100px;height:auto;">
Delete me</button>

<button class="eraseable">
<img class="eraseable" src="http://zelcs.com/wp-content/uploads/2013/02/stackoverflow-logo-dumpster.jpg" style="width:100px;height:auto;">
Delete me</button>

<button class="eraseable">
<img class="eraseable" src="http://zelcs.com/wp-content/uploads/2013/02/stackoverflow-logo-dumpster.jpg" style="width:100px;height:auto;">
Delete me</button>

<script>
function deleteItem()
{
   var resp = confirm("Do you want to delete this item???");
   if (resp == true) {
      //do something
   } 
   else {
      //do something
   }
}
</script>

를 사용하여 이 함수를 호출하다onClick

"삭제 시 확인 메시지"의 경우 다음을 사용합니다.

                       $.ajax({
                        type: "POST",
                        contentType: "application/json; charset=utf-8",
                        url: "Searching.aspx/Delete_Student_Data",
                        data: "{'StudentID': '" + studentID + "'}",
                        dataType: "json",
                        success: function (data) {
                            alert("Delete StudentID Successfully");
                            return true;
                        }

Javascript를 사용한 Angularjs 삭제 예

html 코드

<button ng-click="ConfirmDelete(single_play.play_id)" type="submit" name="actiondelete" value="1"><img src="images/remove.png" alt="Delete"></button>

"single_play.play_id"는 삭제 액션 중에 임의의 파라미터를 전달한다고 가정한 임의의 angularjs 변수입니다.

앱 모듈 내부의 Angularjs 코드

$scope.ConfirmDelete = function(yy)
        {
            var x = confirm("Are you sure you want to delete?");
            if (x) {
             // Action for press ok
                $http({
                method : 'POST',
                url : 'sample.php',
                headers: {'Content-Type': 'application/x-www-form-urlencoded'},
                data: $.param({ delete_play_id : yy})
                }).then(function (response) { 
                $scope.message = response.data;
                });
            }
            else {
             //Action for cancel
                return false;
            }
        } 

언급URL : https://stackoverflow.com/questions/9139075/how-to-show-a-confirm-message-before-delete

반응형