gpt4 book ai didi

php - 从一个页面获取一个id并将其存储在另一个页面中

转载 作者:行者123 更新时间:2023-11-30 18:35:41 25 4
gpt4 key购买 nike

我在下面有一个 javascript 函数:

var alphabet = [ "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" ];  

function generateRandomString(strLength) {
var output = "";
for (var i = 0; i < strLength; i++) {
var randomIndex = Math.floor(Math.random() * alphabet.length);
output += alphabet[randomIndex]; }
return output; }

function getSession() {
var randomDiv = document.getElementById("randomStrings");
newText = generateRandomString(3);
randomDiv.innerHTML = newText;
}

此函数的作用是检索任何字母 3 次并显示它,例如AGH、TRY、MNK 等

这显示在如下段落中:

<p id="randomStrings"></p>

这一切都在 create_session.php 文件中完成。

现在我想要的是从 create_session.php 文件中获取 id="randomStrings" 并将其存储在另一个页面 (QandATable.php) 中。如何做到这一点?

最佳答案

您可以使用 JavaScript 将您想要的值复制到表单中的隐藏输入字段,然后将表单提交到 QandATable.php。然后,您可以使用 $_POST 数组来访问您刚刚发送的值。

关于php - 从一个页面获取一个id并将其存储在另一个页面中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8275211/

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