私はこの質問に答えるには遅すぎることを知っています。しかし、他の人がこれを役立つと思うことができるように、私はこの答えを追加しています。
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';
});}
とオンmypage.html:
document.addEventListener("deviceready", page2Method, false);
function page2Method(){
var display_date = window.localStorage.getItem("date");
var display_title = window.localStorage.getItem("title");
}