How to redirect page after click on Ok button on sweet alert?

前端 未结 12 903
别跟我提以往
别跟我提以往 2020-12-10 01:15

I am able to display sweet alert after the page refresh but I have to click on Ok button which I am getting on sweet alert to redirect the page.Please help me in this.

12条回答
  •  我在风中等你
    2020-12-10 01:55

    setTimeout(function () { 
    swal({
      title: "Wow!",
      text: "Message!",
      type: "success",
      confirmButtonText: "OK"
    },
    function(isConfirm){
      if (isConfirm) {
        window.location.href = "//stackoverflow.com";
      }
    }); }, 1000);
    
      
      


    Or you can use the build-in function timer, i.e.:

    swal({
      title: "Success!",
      text: "Redirecting in 2 seconds.",
      type: "success",
      timer: 2000,
      showConfirmButton: false
    }, function(){
          window.location.href = "//stackoverflow.com";
    });
    
      
      

提交回复
热议问题