最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Page does not get reloaded when going back in history in combination with window.history.pushState - Stack Overflow

programmeradmin1浏览0评论

When I change the url with window.history.pushState the page is not automatically reloaded when going back in history of the browser, e.g. by clicking on the "history-back-button". Why is the page not automatically reloaded? Can I change this behavior?

Here is a little piece of code to exemplify this "problem":

<html>
    <head>
        <title>Location test</title>
        <script>
            function load() {
                var value = window.location.search.substr(1);
                document.getElementById('myInput').value = value;
                document.title = 'Location test - ' + value;
            }
            function set(el) {
                window.history.pushState('', '', window.location.pathname + '?' + el.value);
                document.title = 'Location test - ' + el.value;
            }
        </script>
    </head>
    <body onload="load();">
        <input id="myInput" type="text" onkeyup="set(this);">
    </body>
</html>

Just write something into the text-field and the browser-history is updated accordingly. Click on the browser's history back button does not refresh the page. You have to manually refresh it.

I have worked around this by inserting my own "back-button" on the website which runs window.history.back(); location.reload();. But I would be happy if the normal browser "history-back-button" did the trick (as well).

When I change the url with window.history.pushState the page is not automatically reloaded when going back in history of the browser, e.g. by clicking on the "history-back-button". Why is the page not automatically reloaded? Can I change this behavior?

Here is a little piece of code to exemplify this "problem":

<html>
    <head>
        <title>Location test</title>
        <script>
            function load() {
                var value = window.location.search.substr(1);
                document.getElementById('myInput').value = value;
                document.title = 'Location test - ' + value;
            }
            function set(el) {
                window.history.pushState('', '', window.location.pathname + '?' + el.value);
                document.title = 'Location test - ' + el.value;
            }
        </script>
    </head>
    <body onload="load();">
        <input id="myInput" type="text" onkeyup="set(this);">
    </body>
</html>

Just write something into the text-field and the browser-history is updated accordingly. Click on the browser's history back button does not refresh the page. You have to manually refresh it.

I have worked around this by inserting my own "back-button" on the website which runs window.history.back(); location.reload();. But I would be happy if the normal browser "history-back-button" did the trick (as well).

Share Improve this question asked May 2, 2014 at 13:49 DanielDaniel 3,7415 gold badges39 silver badges68 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

I think this may explain the topic much better than me. http://rosspenman./pushstate-jquery

popstate is the key

I'm working on a very similar problem. Don't think its pretty but the following snippet or a variation thereof may help

    $(window).on("popstate", function(e) {
        if (e.originalEvent.state !== null) {
        location.reload()
        }
    });

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论