|
window.addEventListener('load', function() {
// 绑定popstate事件处理函数
window.addEventListener('popstate', function(event) {
// 用户点击返回键时的处理逻辑
alert('您点击了返回键!');
// 可以根据需要取消默认行为或进行其他操作
history.pushState(null, null, location.href); // 防止默认的返回行为
});
// 初始化一个历史记录,防止用户点击返回键时出现错误
history.pushState(null, null, location.href);
});
|
|