我需要在 html 页面中单击提交按钮时禁用浏览器后退按钮,以确保进程没有终止。
这是在浏览器中禁用后退按钮的代码,但它仅在 onload 事件中工作。当我试图在 onclick 事件中使用它时,它不会工作。
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>New event</title>
</head>
<SCRIPT type="text/javascript">
window.history.forward();
function noBack() { window.history.forward(); }
</SCRIPT>
</HEAD>
<BODY onload="noBack();"
onpageshow="if (event.persisted) noBack();" onunload="">
<a href='page2.html' >Page 2</a>
</body>
</html>
任何人都可以知道如何在我单击 html 页面中的提交按钮时禁用浏览器后退按钮