HTML5 popstate事件传递null

时间:2014-12-25 02:12:15

标签: javascript html5 history pushstate

我面临一个奇怪的问题,即popState返回null,无论如何,即使pushState已经触发七次或八次。

window.addEventListener('popstate', function(event) {

    console.log(event.state);

});

我也尝试过:

window.onpopstate = function(event) {
        console.log(event.state);
};

但没有运气。我使用的是Chrome。

1 个答案:

答案 0 :(得分:0)

问题是我没有正确设置pushState变量。