在jQuery中重新加载页面后打开模态

euoag5mw  于 2022-12-03  发布在  jQuery
关注(0)|答案(1)|浏览(174)

我需要一种方法来打开模态后重新加载页面。我需要更新的结果之前再次打开模态。我正在使用这个方法,但它不工作:

if (data == "done") {
  Swal.fire({
    icon: 'success',
    html: '<?= $getTranslation->tr('success') ?>',
    confirmButtonText: '<?= $getTranslation->tr('confirm') ?>',
    showCloseButton: true
  }).then((result) => {
    if (result.isConfirmed) {
      // location.reload();
      $('.step-6-modal').modal('show');
    }
  })
}
uqdfh47h

uqdfh47h1#

window.onload = function() {
    ajaxRequest(request).then(data => {
        if (data == "done") {
            Swal.fire({
                icon: 'success',
                html: '<?= $getTranslation->tr('success') ?>',
                confirmButtonText: '<?= $getTranslation->tr('confirm') ?>',
                showCloseButton: true
            }).then((result) => {
                if (result.isConfirmed) {
                // location.reload();
                $('.step-6-modal').modal('show');
                }
            })
        }
    })
}

相关问题