HTML5和Jquery - 从一个页面到另一个页面的数据传输

时间:2014-09-16 11:01:33

标签: jquery html5 windows-phone-8

我正在使用HTML5和jquery创建一个窗口手机8个应用程序。我有两个html页面,第一页有一些输入框和一个按钮,第二页有控件,我必须显示第一页的输入数据。点击第一页按钮后,它会导航到window.location.href = "xyz.html";的第二页。

如何从第一页传递数据,以便使用javascript / jquery进入第二页。

我尝试使用像window.location.href = "xyz.html?x=value"这样的查询来发送,但这是不被接受的。

1 个答案:

答案 0 :(得分:1)

我认为此示例代码可以帮助您。

<input type="script" value="" name= "" id="myInput"/> <input type="button" value="nextPage" onclick="nextPage();"> <script type="text/javascript"> function nextPage(){ //get the input value of the field var inputValue= $('#myInput').val ;

`  //jump to next page
  location.href= 'nextpage.html' +inputValue ;
}

`