How to redirect user to another page after Ajax form submission

前端 未结 7 622
既然无缘
既然无缘 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:53

    The follow code worked for me, in a complete different context of the OP:

    $(document).ready(function() {
      window.location.href = "URL";
      });

提交回复
热议问题