获取上一页phonegap javascript

时间:2013-05-16 09:57:49

标签: javascript cordova html5-history

如何在phonegap上使用javascript获取上一页?

我想返回(window.history.back())只有当我来自一个特定的html文件时,否则我想在按下后退按钮时转到另一个html页面。 所以我想知道哪一个是历史的前一页。

我一直在谷歌搜索一段时间,但我找不到适合我的答案。

1 个答案:

答案 0 :(得分:9)

如果您想要内置内置功能,可以使用document.referrer获取以前的网址。但它可能不适合您的需求。更多信息hereherehere

另一个非常简单的选择是将当前页面名称存储在会话存储中,读取它然后决定下一步该做什么。

//retrieve the previous page
var previouspage = window.sessionStorage.getItem("page"):
// if thee is no previous page you are on the first page
if (previousPage == undefined){
 //do something if you want, this means it's the first page the user is seeing
 }
//get current page address
var currentPage = window.location.href;
//store it
window.sessionStorage.setItem("page",currentPage); 
//check if the previous page is the one you wanted.
if (previousPage == "the_page_you_wanted"){
 // do something.
 }

LocalStorage vs SessionStorage