gpt4 book ai didi

javascript - Jquery mobile - 如何在two.html中检索从one.html传递的数据?

转载 作者:行者123 更新时间:2023-12-03 07:02:22 27 4
gpt4 key购买 nike

我点击了这个链接:

Pass parameter between pages using jquery mobile

但它所做的只是

 1) pass a parameter to a new HTML page(one.html->two.html)
2) Read what's been passed from one.html in one.html before page disappears.
- but i want to read the data in two.html, not in one.html

不是吗?我也许错了。但这就是代码似乎正在做的事情。

在 one.html 中,我将数据传递给 Two.html,如下所示:

$( document ).delegate("#page1", "pageinit", function() {

$.mobile.changePage('two.html', {
dataUrl : "two.html?paremeter=123",
data : { 'paremeter' : '123' },
reloadPage : true, changeHash : true
});

});

如何从two.html 检索此数据?

最佳答案

在两个.html

$(document).on('pageshow', "#twoIndex", function (event, data) {
var parameters = $(this).data("url").split("?")[1];;
parameter = parameters.replace("parameter=","");
alert(parameter);
});

考虑使用 localStorage 和 sessionStorage。更多信息请查看gajotres's blog post.

关于javascript - Jquery mobile - 如何在two.html中检索从one.html传递的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36985032/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com