可能重复:
How to customize (or disable) the automatic “back” button in JQueryMobile
您好我正在尝试开发一个移动网页,其中我的要求是
用户首先从第A页到第B页,然后点击浏览器的后退按钮就不能去B页。
答案 0 :(得分:2)
如果您想阻止使用浏览器后退按钮返回上一页,可以使用此代码段
<head>
<script type="text/javascript">
window.history.forward();
function noBack() { window.history.forward(); }
</script>
</head>
<body onload="noBack();"
onpageshow="if (event.persisted) noBack();" onunload="">
实际来源 - http://viralpatel.net/blogs/2009/11/disable-back-button-browser-javascript.html