PhoneGap を使用して jQuery モバイル アプリケーションを構築しています。jQuery モバイルを使用して、周辺のページのいくつかのパラメーターを渡して、新しいページを開く必要があります。このために、次のようにローカル ストレージを使用しようとしました。
$("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 フォンでは動作しません。私が間違っているところを教えてもらえますか?