Confirm deletion using Bootstrap 3 modal box

后端 未结 8 605
走了就别回头了
走了就别回头了 2020-11-30 19:57

I need to confirm deletion using Bootstrap 3 modal box (YES/NO). How can I create this?

HTML code:

&
8条回答
  •  悲&欢浪女
    2020-11-30 20:09

    You can use Bootbox dialog boxes

    $(document).ready(function() {
    
      $('#btnDelete').click(function() {
        bootbox.confirm("Are you sure want to delete?", function(result) {
          alert("Confirm result: " + result);
        });
      });
    });
    

    Plunker Demo

提交回复
热议问题