How to redirect user to another page after Ajax form submission?

前端 未结 4 1950
盖世英雄少女心
盖世英雄少女心 2021-01-21 03:51

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://c

4条回答
  •  臣服心动
    2021-01-21 04:06

    There are two way to redirect user after successful form post.

    1) You can put a on Success event in ajax submission in which you can simply redirect user to thankyou page.

    2) Use a server side function after your form post processing done For Ex in PHP:

    header("Location: http://thankyoupage.html");
    

提交回复
热议问题