使用Javascript的后退按钮

Back Button With Javascript

本文关键字:按钮 Javascript 使用      更新时间:2023-09-26

当我在浏览器中点击返回按钮时,它应该导航到所需的位置,

但下面写的代码适用于所有按钮,包括"表单"按钮

window.onbeforeunload = function () {
       location.replace('http://www.google.com');
       return "This session is expired and the history altered.";
    }

如何将此功能仅限于浏览器后退按钮

感谢

由于隐私原因,浏览器中不允许篡改历史记录;安全原因。因此,您将无法执行此操作。