sweetalert2取消预订(保证)

时间:2017-05-29 22:33:33

标签: javascript sweetalert2

我已经查看了这里的示例,无法找到解决方案?我正在努力的是,我从开发者网站上获取了代码,并且只在我说的可能的地方添加了我的位。它加载在除IE之外的每个浏览器上。请建议,因为这是我的头脑。我在chrome和firefox上执行错误代码,但它会加载。

错误代码是:未捕获(在承诺中)取消

我的代码是在javascript中,同时检查我们会话是否活跃

<script>

    if (!<?php echo isset($_SESSION['user_id'])?'true':'false'; ?>) {

swal({
  title: "So its your first job request?",
  text: "If you are new here, click CONTINUE to enter your personal details then your job details or click LOGIN",
  type: "info",
  showCancelButton: true,
  confirmButtonColor: '#3085d6',
  cancelButtonColor: '#d33',
  confirmButtonText: 'No, LOGIN!',
  cancelButtonText: 'CONTINUE'
}).then(function () {

 window.location.replace("login"); 
})

      $('#progress').show();
      $('#your-details').show();
      $('#status-register').show();
      $('#start2').show(); 

    } else {
      $('#your-details').hide();
      $('#status-pickup').show();  
      $('#progress').show();
      $('#pickup-details').show(); 
      $('#start1').show(); 
    }   
      $('#bottom-stuff').show();    
</script>

任何帮助都会帮助我脱掉头发,谢谢

1 个答案:

答案 0 :(得分:-3)

要解决此问题,请添加此

<script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.js"></script>