2017-05-29 78 views
1

我已經查看了這裏的例子,找不到解決方案嗎?我在做什麼是我從開發人員網站獲取了代碼,並且只是在我所能說的地方添加了我的位置。除IE之外,它在每個瀏覽器上加載。請指教,因爲這是在做我的頭。我在鉻和Firefox的錯誤代碼,但它加載。sweetalert2未捕獲(承諾)取消

的錯誤代碼是:未捕獲的(以諾)取消

我的代碼是在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> 

任何幫助將幫助我從拉我的頭髮,謝謝你

+0

什麼時候發生錯誤時,你什麼時候加載頁面或當你點擊按鈕? – Bergi

+0

順便說一句,你不應該混合JS和PHP那樣。 – Bergi

+1

[Uncaught(在諾言)取消使用SweetAlert2](https://stackoverflow.com/questions/39321621/uncaught-in-promise-cancel-using-sweetalert2) – James

回答

-2

要解決此問題,只需添加這

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