Possible Duplicate:
How to customize (or disable) the automatic “back” button in JQueryMobile




嗨,我正在尝试为手机开发一个网页,我的要求是

用户首先从页面A转到页面B,然后他无法通过单击浏览器的后退按钮进入页面B。

最佳答案

如果要防止使用浏览器后退按钮返回上一页,则可以使用此代码段

<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

09-25 16:21