1

我有这个 html 页面。在 chrome 上,如果我在 Button2 中单击几次,然后单击导航器后退按钮

<html>
<head>
<script>

function button_onclick(){
    var stateObj = { foo: "bar" };
    history.pushState(stateObj, "page 2", "bar.html");
}

function onPopState(){
    console.log("location: " + document.location + ", state: " + JSON.stringify(event.state));
}


window.addEventListener('popstate', onPopState, false);

</script>
</head>

<body>

<button type="button" onclick="button_onclick()">Button 2</button>

</body>

</html>

我可以在控制台中看到:

location: http://somedomain:8080/examples/bar.html, state: {"foo":"bar"} 

如果我尝试使用 Firefox,我什么也看不到?我用 Firefow 13.0.1 测试过,如果我想使用 html5 历史 API 管理历史,这很烦人

4

1 回答 1

0

在另一个问题上找到并帮助了我:

单击链接时不应调用 popstate 。当用户使用后退/前进按钮导航时调用它。

一切都在按应有的方式工作。

于 2012-11-21T14:36:34.030 回答