最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - Sweet Alert 2 and javascript:How do i make a Sweet alert button that sends me to a certain webpage when clicked - Stack

programmeradmin1浏览0评论

My code so far:

swal({ 
    title: 'Successfully Registered!', 
    text: "Do you want to go to the Log In page?", 
    type: 'success', 
    showCancelButton: true, 
    confirmButtonColor: '#3085d6', 
    cancelButtonColor: '#d33', 
    confirmButtonText: 'Yes, send me there!' 
    }, 
    function(){ 
       window.location.href= ""; 
    }
); 

For some reason the window.location.href is not working and i tried using only location.href and if(isConfirm) etc.
What should i do?
JSFiddle:/

My code so far:

swal({ 
    title: 'Successfully Registered!', 
    text: "Do you want to go to the Log In page?", 
    type: 'success', 
    showCancelButton: true, 
    confirmButtonColor: '#3085d6', 
    cancelButtonColor: '#d33', 
    confirmButtonText: 'Yes, send me there!' 
    }, 
    function(){ 
       window.location.href= "http://example."; 
    }
); 

For some reason the window.location.href is not working and i tried using only location.href and if(isConfirm) etc.
What should i do?
JSFiddle:https://jsfiddle/2dz868kd/

Share Improve this question edited Apr 25, 2017 at 17:26 Calin Manoli asked Apr 25, 2017 at 17:05 Calin ManoliCalin Manoli 331 gold badge1 silver badge6 bronze badges 2
  • 1 you should upload code to jsfiddle so user can see demo and can make changes there. – Bhaumik Pandhi Commented Apr 25, 2017 at 17:09
  • 1 I did, thanks for the suggestion. – Calin Manoli Commented Apr 25, 2017 at 17:32
Add a ment  | 

2 Answers 2

Reset to default 8

Here's how you can make it with SweetAlert2:

Swal.fire({
    title: 'Successfully Registered!',
    text: 'Do you want to go to the Log In page?',
    icon: 'success',
    showCancelButton: true,
    confirmButtonColor: '#3085d6',
    cancelButtonColor: '#d33',
    confirmButtonText: 'Yes, send me there!'
 }).then(function(result) {
   if (result.isConfirmed) {
     location.assign("https://stackoverflow./")
   }
 });
<script src="https://cdn.jsdelivr/npm/sweetalert2@11"></script>

SweetAlert2 documentation: https://sweetalert2.github.io/

Please note that SweetAlert2 and SweetAlert are two different projects. SweetAlert2 uses ES6 Promises.

This is what i use to redirect on click (OK)

<script>
sweetAlert({title: 'Error',text: 'Invalid OTP',type: 'error',onClose: function(){
        window.location.href = 'https://google.';
}});
</script>

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论