我正在为 windows phone 7 开发一个 jQuery 移动应用程序。我必须通过 windows phone 7 上的 url 将数据从一个视图传递到另一个视图。为此,我们尝试如下查询字符串:
$.mobile.changePage("test.html?id=0");
但这不适用于Windows Phone。Windows 模拟器显示加载错误。请帮我。有没有其他方式在页面之间传递数据。
谢谢。
我正在为 windows phone 7 开发一个 jQuery 移动应用程序。我必须通过 windows phone 7 上的 url 将数据从一个视图传递到另一个视图。为此,我们尝试如下查询字符串:
$.mobile.changePage("test.html?id=0");
但这不适用于Windows Phone。Windows 模拟器显示加载错误。请帮我。有没有其他方式在页面之间传递数据。
谢谢。
我知道现在回答这个问题为时已晚。但我正在添加这个答案,以便其他人可以发现这很有帮助。
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");
}