我有这个 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 管理历史,这很烦人