gpt4 book ai didi

jquery - 如何禁用 jquerymobile 中的后退按钮

转载 作者:行者123 更新时间:2023-12-01 04:21:06 26 4
gpt4 key购买 nike

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

关于jquery - 如何禁用 jquerymobile 中的后退按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10572787/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com