我的网站上有以下情况。当用户在付款(结帐)页面上并点击后退按钮时,默认显示错误页面(magento棘手的东西)。
我希望我的用户可以在主页上重定向!
这可以使用javascript / jquery,还是使用html5 push state?
非常感谢任何帮助。
答案 0 :(得分:-1)
尝试回复:history.back(-1);
这是我做的后退按钮:
document.getElementById('exit').addEventListener('click', function(event) {
event.preventDefault();
history.back(-1);
});
<button id="exit"></button>