Bootstrap 如何在 AJAX 成功后关闭模态窗口

k97glaaz  于 2022-12-07  发布在  Bootstrap
关注(0)|答案(9)|浏览(260)

我有一个打开模态的按钮,但我已经通过单击背景或ESC键阻止了模态关闭。
我的按钮如下所示:

<button data-toggle="modal" data-target="#CompanyProfile"data-backdrop="static" data-keyboard="false">Click </button>

如何在使用jQuery成功完成$.ajax后关闭此模态?

我做了一些测试-模态已经关闭,但后台被锁定,在刷新页面之前我无法执行任何操作

oewdyzsn

oewdyzsn1#

要关闭引导模式,您可以将'hide'作为选项传递给模式方法,如下所示。

$('#CompanyProfile').modal('hide');

AJAX 中使用此代码会成功。
Fiddle Demo

xqnpmsa8

xqnpmsa82#

添加此解决方案,因为似乎没有列出通用方法。
如果您希望在成功时关闭任何模态,但不希望手工创建对服务器的每个$. AJAX 调用,可以使用以下代码:

$('.modal form').on('submit', function(event) {
    event.preventDefault();
    $.ajax({
        url: $(this).attr('action'),
        type: 'POST',
        data: $(this).serializeObject(),
        contentType: 'application/json',
        beforeSend: function(xhr){xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded")},
        success: function(data) {
            console.log(data.success);
            if(data.success===1) {
                // loop through all modal's and call the Bootstrap
                // modal jQuery extension's 'hide' method
                $('.modal').each(function(){
                    $(this).modal('hide');
                });
                console.log('success');
            } else {
                console.log('failure');
            }
        }
    });
});

顺便说一句,如果您希望使用上面的代码进行复制/粘贴,则需要以下代码,它接受表单数据并将其转换为JSON以发布到服务器,或者将$(this).serializeObject()更改为$(this).serialize()

$.fn.serializeObject = function() {
    var o = {};
    var a = this.serializeArray();
    $.each(a, function() {
        if (o[this.name]) {
            if (!o[this.name].push) {
                o[this.name] = [o[this.name]];
            }
            o[this.name].push(this.value || '');
        } else {
            o[this.name] = this.value || '';
        }
    });
    o = { request: o };
    return o;
};

参考:Bootstrap JS Modal

piwo6bdm

piwo6bdm3#

您可以尝试以下操作

$( document ).ready(function() {               
        $(".btn").button().click(function(){         // button click

                $('#CompanyProfile').modal('show')   // Modal launch
                     $.ajax({
                              type: "POST",
                              url: "url",
                              data:{data:data},
                              cache: false,                         
                              success: function(data) { 
                                                  $('.text').html(data); 
                                                 }
                   })                          
         });   
  });

确保模态仅启动一次

kmbjn2e3

kmbjn2e34#

你可以试试下面的方法,虽然没有经过测试,但是你会明白的。

$.ajax({
  url: 'yourscript.php',
  data: $('form#yourForm').serialize(),
  type: 'post'
}).done(function(response) { 
  // trigger modal closing here since ajax is complete.
});
py49o6xq

py49o6xq5#

我定义我的情态:

<div class="modal fade" aria-hidden="true" role="dialog" id="modal" tabindex="-1">
    <div class="modal-dialog modal-dialog-centered" role="document">
        <div class="modal-content">
            <div class="modal-header">
                <button id="btnCloseModal" hidden type="button" class="close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true">&times;</span>
                </button>
                <strong>Waiting</strong>
            </div>
            <div class="modal-content">
                <div>
                    Please don't close your tab!
                </div>
                <div class="d-flex justify-content-center">
                    <div class="spinner-border" role="status">
                        <span class="sr-only">Loading...</span>
                    </div>
                </div>
            </div>
            <div class="modal-footer">
                <strong>Loading...</strong>
            </div>
        </div>
    </div>
</div>

然后使用create函数:

var StopLoadingAnimation = function () {
$('#modal').on('show.bs.modal', function (e) {
    console.log("trigger show");
    $("#btnCloseModal").trigger("click");
});
$('#modal').on('shown.bs.modal', function (e) {
    console.log("trigger");
    $("#btnCloseModal").trigger("click");
});
$('#modal').on('hidden.bs.modal', function (e) {
    console.log("event");
    $(e.currentTarget).off('shown');
    $(e.currentTarget).off('show');
});
$("#btnCloseModal").trigger("click");

}
我的想法是在ajax成功后将调用函数StopLoadingAnimation什么将触发事件点击元素btnCloseModal(它就像你点击按钮btnCloseModal当你关闭模态)

lc8prwob

lc8prwob6#

如果要将某个模态定位在另一个模态内部(顶部),请使用$('#YourModalId').modal('toggle');

vojdkbi0

vojdkbi07#

在模态中创建一个按钮,如下所示:

<button type="button" class="close" id="closemodal" data-dismiss="modal" aria-label="Close">

然后,在 AJAX 中:

$.ajax({
  type: "POST",
  url: "yourcode.php",
  cache: false,
  data: dataString,
  success: function(html) {
    $('#closemodal').click ();
  }
})

希望这对你有帮助!

piah890a

piah890a8#

使用设置超时

setTimeout(function () {
  $('#CompanyProfile').modal('hide');
}, 1000);
a7qyws3x

a7qyws3x9#

success :function(){
              console.log("success");
              $('#contact_modal').html("<img src='img/bg/success.gif'>").delay(3000).fadeOut(450);
              $('body').removeClass('modal-open');
              $('.modal-backdrop.show').css('opacity','0');
              $('.modal-backdrop').css('z-index','-1')
          }

相关问题