How to redirect user to another page after Ajax form submission

前端 未结 7 633
既然无缘
既然无缘 2020-12-11 03:54

I\'m having problems redirecting the user to a thank you page after a successful form completion. What happens is that after the form submits, it goes to a blank page (https

7条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-11 04:46

    you can try like this :

     success: function (data) {
        window.location.href = data.redirecturl;
    },
    error: function () {
        alert('error happened');
    }
    

提交回复
热议问题