gpt4 book ai didi

javascript - 如何将数据从一个html页面传递到另一个?

转载 作者:行者123 更新时间:2023-11-30 12:37:49 24 4
gpt4 key购买 nike

我有两个页面:

  • 选择.html
  • 创建.html

choose.html 中,我可以从 ListView 中选择一个条目。我可以在 ListView 中单击此类条目,我想传递该条目的 ID,以便我可以在 html 页面 create.html 上使用 ID .

ID 是一个数字。

我做了:

当我点击一个条目时,我得到了 ID:

function postID(id) {
alert(id);
}

到此为止。

然后我在 create.html 上使用 GET 尝试了这段代码:

发布:

function postID(id) {
$.ajax({
url: "create.html",
type: "POST",
dataType: "text",
data: id,
success: function () {
document.location.href = "create.html";
},
error: function (jqXhr) {
alert("Error");
}
});
}

获取:

try {
$.get("chooseAddress.html", function (id) {
alert(id);
});
}
catch (e) {
alert();
}

但是没有任何反应。你能帮帮我吗?

谢谢

最佳答案

如此简单的问题需要付出如此多的努力。使用隐藏字段或使用 session 变量。

关于javascript - 如何将数据从一个html页面传递到另一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25520930/

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