防止页面添加到浏览器历史记录中

发布于 2024-12-12 03:55:26 字数 274 浏览 0 评论 0原文

我正在使用 Jquery Mobile 与phonegap 结合创建一个移动应用程序。现在我有了这个登录对话框,我最初将其设置为对话框(而不是页面)。但是,我需要能够控制关闭按钮的功能,因此我将其更改为一个页面,在其中创建了自己的关闭按钮。

现在我遇到了页面被添加到浏览器历史记录中的问题。她的问题是,当在 Android 上使用这个应用程序时,在关闭应用程序之前,回击打开/关闭登录对话框 x 次......它真正应该做的就是关闭应用程序。

知道如何使此“登录对话框”页面不添加到浏览器历史记录中吗?

I'm using Jquery Mobile to create a mobile app in combination with phonegap. Now I had this login dialog which I originally set as a dialog (instead of a page). However, I needed to be able to control the functionality of the close button, so I changed it into a page, where i created my own close button.

Now I have a problem of the page being added to the browser history. The problem her is when using this app on Android, hitting back opens/closes the login dialog x number of times, before closing the app... What it really should do is just close the application.

Any idea how I can make this "login dialog" page not be added to the browser history?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最初的梦 2024-12-19 03:55:26

来自 jQuery Mobile 文档

//transition to the "confirm" page with a "pop" transition without tracking it in history           
$.mobile.changePage( "../alerts/confirm.html", {
  transition: "pop",
  reverse: false,
  changeHash: false
}); 

From the jQuery Mobile documentation:

//transition to the "confirm" page with a "pop" transition without tracking it in history           
$.mobile.changePage( "../alerts/confirm.html", {
  transition: "pop",
  reverse: false,
  changeHash: false
}); 
魂归处 2024-12-19 03:55:26

如果您使用 window.location.replace() 导航到该登录页面,它将忽略将该页面放入浏览器历史记录中。 https://developer.mozilla.org/en/DOM/window.location

If you use window.location.replace() to navigate to that login page it will omit putting that page into the browser history. https://developer.mozilla.org/en/DOM/window.location

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文