我面临一个奇怪的问题,即popState返回null,无论如何,即使pushState已经触发七次或八次。
window.addEventListener('popstate', function(event) {
console.log(event.state);
});
我也尝试过:
window.onpopstate = function(event) {
console.log(event.state);
};
但没有运气。我使用的是Chrome。
答案 0 :(得分:0)
问题是我没有正确设置pushState变量。