我想使用 JavaScript 或 JQuery(或任何插件)来强制浏览器在单击后退按钮时加载特定页面。
基本上将页面插入浏览器的历史记录。
我在下面找到了一种方法,但它似乎很啰嗦。我错过了什么吗?
<html>
<head>
<title>Back button test</title>
</head>
<body>
<script type="text/javascript">
window.history.pushState('other.html', 'Other Page', 'other.html');
window.history.pushState('initial.html', 'Initial Page', 'initial.html');
</script>
Initial page <br />
<script type="text/javascript">
window.addEventListener("popstate", function(e) {
if(document.URL.indexOf("other.html") >= 0){
document.location.href = document.location;
}
});
</script>
</body>
</html>