Windows.history.back() + location.reload() jquery

前端 未结 7 1195
[愿得一人]
[愿得一人] 2021-02-05 05:30

I\'ve a probleme in my code. The aim is to complete a simple form, then you click on a submit button. It do an Ajax resquest to go in the method. On success in the ajax request,

7条回答
  •  无人及你
    2021-02-05 06:27

    You can't do window.history.back(); and location.reload(); in the same function.

    window.history.back() breaks the javascript flow and redirects to previous page, location.reload() is never processed.

    location.reload() has to be called on the page you redirect to when using window.history.back().

    I would used an url to redirect instead of history.back, that gives you both a redirect and refresh.

提交回复
热议问题