history.pushState() and clicking back/forward button

∥☆過路亽.° 提交于 2019-12-12 04:25:32

问题


This is my code to change url on ajax load which works

$.ajax({
  url: url,
  success: function (data) {
  $(selector).html(data);
    var title = data.match("<title>(.*?)</title>")[1]; // get title of loaded content   
    window.history.pushState( {page : 0} , document.title, window.location.href ); // store current url.    
    window.history.pushState( {page : 1} , title, url ); // Change url.
    document.title = title; // Since title is not changing with window.history.pushState(), 
    //manually change title. Possible bug with browsers.
    window.onpopstate = function (e) {
        window.history.go(0);
    };
  }
});

when i click back , previous page is loading. And if i click again nothing happen. And one more click it will goto first page. After some testing i found , there are 2 same page in back button ,on each ajax loading

Also i need a code to get history when click forward button


回答1:


Moderators have removed my post, for the reason that I really given little scraps of code to try to help.


But still I will try to give an example:

Suppose you have this code is triggered by the event onclick.

$(function() {
    function load(url, push) {
        $.ajax({
            url: url,
            success: function (data) {
                var title = data.match("<title>(.*?)</title>")[1];
                document.title = title;
                if (push) {
                    history.pushState(null, title, url);
                }
            }
        });
    }

    $(document).click(function(e) {
        if (e.target.nodeName === 'A') {
            var url = $(e.target).attr('href');
            if (url.indexOf('#') !== 0) {
                load(url, true);
                e.preventDefault();
            }
        }
    });

    $(window).bind('popstate', function(e) {
        load(window.location.href, false);
    });
});


来源:https://stackoverflow.com/questions/15965031/history-pushstate-and-clicking-back-forward-button

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!