关闭后的甜蜜警报电话

时间:2017-02-08 14:33:20

标签: sweetalert

所以我使用swal来显示加载gif图像并显示成功/错误消息......

这是我的代码

function spinner() {
        swal({
          title: "<?=__('Please wait...')?>",
          imageUrl: "../img/loader.gif",
          showConfirmButton: false
        })
      }

      $(document).ajaxStart(function(){
        //show spinner
        spinner();
      }).ajaxStop(function(){
        //hide spinner
        swal.close();
      });

所以我只在ajax调用正在进行中使用此调用,之后我想调用微调器并打开另一个swal弹出窗口。

.
.
.
function(data, textStatus, jqXHR)
          {
            //Success
            $("#report-container-stand").modal( 'toggle' );
            swal("<?= __('Success!') ?>", "<?= __('Message has been successfully sent to your customer support') ?>", "success")
            // console.log('success');
          }
.
.
.

这并不是因为在ajax调用完成后,他关闭了微调器和下一个没有点击确认按钮....

有人知道什么是问题吗?

0 个答案:

没有答案