1

我正在使用 PhoneGap 构建一个 jQuery 移动应用程序。我必须通过使用 jQuery mobile 传递一些旧页面的参数来打开一个新页面。为此,我尝试使用本地存储,如下所示:

$("li").click(function(){
    console.log("hi");
    var index = $(this).index();
    console.log("index"+ index);

    window.localStorage.setItem("date",userArray_date[index] );
    window.localStorage.setItem("title",userArray_title[index] );

    window.location.href='mypage.html';     
});

在另一个页面上,我检索到这样的值:

var display_date = window.localStorage.getItem("date");
var display_title = window.localStorage.getItem("title");

$("#Date_Leaf").append(display_date);
$("#Title_Leaf").append(display_title);

这在 Android 手机上可以正常工作,但在 Windows 7 手机上不起作用。谁能告诉我我要去哪里错了?

4

2 回答 2

3

http://docs.phonegap.com/en/2.0.0/cordova_storage_storage.md.html#localStorage

尝试在 onDeviceReady 函数中使用本地存储

于 2012-09-08T10:26:06.147 回答
2

我们使用 PhoneGap deviceready 方法进行本地存储,它工作正常。像:

document.addEventListener("deviceready", myMethod, false);
function myMethod(){

$("li").click(function(){


    var index = $(this).index();

    console.log("index"+ index);

    window.localStorage.setItem("date",userArray_date[index] );
    window.localStorage.setItem("title",userArray_title[index] );

window.location.href='mypage.html';
});}

and On mypage.html:

document.addEventListener("deviceready", page2Method, false);

function page2Method(){

  var display_date = window.localStorage.getItem("date");
  var display_title = window.localStorage.getItem("title");

}
于 2012-09-07T07:14:51.717 回答