防止页面添加到浏览器历史记录中
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 jQuery Mobile 文档:
From the jQuery Mobile documentation:
如果您使用 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
检查 https://developer.mozilla.org/en/DOM/Manipulated_the_browser_history
Check https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history