简体   繁体   中英

Close bootstrap modal after submit

How can I close the bootstrap modal after I click on the Delete button? Here's my code:

<div id="media_delete_confirmation" class="modal fade">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        <h4 class="modal-title">Confirmation</h4>
      </div>

      <form id="modal-form">
        <div class="modal-body">
          <input id="media_action" value="deleteMediaAction" type="hidden"/>
          <p>Do you want to save changes you made to document before closing?</p>
          <p class="text-warning"><small>If you don't save, your changes will be lost.</small></p>
        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-primary" data-dismiss="modal">Keep</button>
          <button type="button" class="btn btn-default" id="modal_delete">Delete</button>
        </div>
      </form>
    </div>
  </div>
</div>

and here's the other part:

$("#modal_delete").click(function() {

  var id = $(".image-picker").val();
  var media_action = $("#media_action").val();

  $.ajax({
    type: 'POST',
    url: '?page=myMediaController&action=deleteMedia',
    data: {'media_id' : id},
    success: function(data) {
      $("#media_delete_confirmation").modal("hide");
    }
  });
});

I had the same issue, and was able to get the modal dialog to close this way:

<div id="approveDialog" class="modal approveDialog hide">
    <!-- various form elements -->
    <div class="modal-footer pull-center">
            <a href="#" data-dismiss="modal" aria-hidden="true" class="btn">Back to Listings</a>    
            <button id="submitApprove" class="btn btn-success">Shop</button>
    </div>
</div>


$('button#submitApprove').on("click", function(event) {
    // submit form via ajax, then

    event.preventDefault();
    $('#approveDialog').modal( 'hide' );
});

No need to hide model using javascript, you can simply use data-dismiss="modal" in the button tag attribute as follows.

<div class="modal-footer">
  <button type="button" class="btn btn-primary" data-dismiss="modal">Keep</button>
  <button type="button" class="btn btn-default" id="modal_delete"  data-dismiss="modal">Delete</button>
</div>

you can simply hide modal on submit $('#media_delete_confirmation').modal('hide'); //to hide modal

V3 you can try

 success: function(data) {
 // close modal
  $( '#media_delete_confirmation' ).modal( 'hide' ).data( 'bs.modal', null );
 // event after hidden
  $('#media_delete_confirmation').on('hidden', function(){
      $(this).data('modal', null);  // destroys modal
  });
}

Version 2

  $( '#media_delete_confirmation' ).remove();
  $( '.modal-backdrop' ).remove(); // removes the overlay

I just had the same problem. I was trying to close a modal window after submit. The only way that I could solve it was doing the following.

In the success function, I added this code via jQuery:

success: function(respuesta){
    $('#btnGuardarCambios').attr("data-dismiss", "modal");

On the "save changes" button, I used the attr method. If the ajax is successful, I just add a new attribute ( data-dismiss ) and set the value of it (modal) else the modal won't disappear.

EDIT: This isn´t working on IE and Chrome, only works on Mozilla :c

Just try on a <script> before the end of your body writing this

$('#media_delete_confirmation').submit(function() {
        $('#media_delete_confirmation').modal('hide');
        });

first add a id or class in this submit button like closemodel. then add another id or class in this first div. then add this jquery code

 <script> $(document).ready(function() { $('#closemodel').click(function() { $('#CreateAccount1').modal('toggle'); }); }); </script>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM