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

前端 未结 12 902
别跟我提以往
别跟我提以往 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 02:17

    None of the above solutions worked for me, I had to use .then

    swal({
      title: 'Success!',
      text: message,
      type: 'success',
      confirmButtonText: 'OK'
    }).then(() => {
      console.log('triggered redirect here');
    });
    

提交回复
热议问题