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

前端 未结 7 1198
[愿得一人]
[愿得一人] 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:26

    window.history.back(); Sometimes it's an issue with javascript compatibility with ajax call or design-related challenges.

    I would use this below function for go back with the refresh.

    function GoBackWithRefresh(event) {
        if ('referrer' in document) {
            window.location = document.referrer;
            /* OR */
            //location.replace(document.referrer);
        } else {
            window.history.back();
        }
    }
    

    In your html, use:

    BACK`
    

    For more customization you can use history.js plugins.

提交回复
热议问题