假设我的站点 index.html 和 phonegap 中的 about.html 中有两个页面。现在我想在使用 jQuery 或 jQueryMobile 从 index.html 转到 about.html 时加载一些数据。我见过两种方法 $.mobile.loadPage() 和 $.mobile.changePage() 可以将数据传送到页面关注点。
现在,如果我在将页面从 index.html 更改为 about.html 时发送一些数据,如何接收这些数据并在 about.html 中显示它们?
我正在使用这个标签去 about.html
<a href="" data-role="button" data-icon="arrow-r" data-iconpos="right"
onclick="loadTest();" >Test</a>
loadTest() 的代码是
function loadTest() {
var name = "Rafiul Sabbir";
var email = "iamrafiul@gmail.com";
$.mobile.changePage( "about.html", {
type: "post",
data: {name: name, email: email},
});
}
我about.html的body部分的主要内容如下
<div data-role="content">
<h3>Data Goes here</h3>
<table>
<tr>
<td>Name</td>
<div id="name" class="name">
</div>
</tr>
<tr>
<td>Email</td>
<div id="email" class="email">
/div>
</tr>
</table>
</div><!-- /content -->
现在我如何使用 loadTest() 方法接收/获取我从 index.html 发送的名称和电子邮件并将其显示在 about.html
请帮我。我有大麻烦了。如果还有其他方法,也请告诉我!!任何有效的东西对我来说都足够好。