gpt4 book ai didi

javascript - 如何在 html 中使用 javascript 运行 php 文件

转载 作者:行者123 更新时间:2023-11-30 20:37:26 25 4
gpt4 key购买 nike

我有一个带有一些 javascript 的 html,现在我想运行另一个 php 文件 (test.php),而不显示或打开这个文件。这是循环的一部分,我试过:

for(i = 1; i < length; i++){
var bname = table.rows[i].cells.item(0).innerHTML;
var bvalue = table.rows[i].cells.item(1).innerHTML;
location.href = "test.php?account="+account+"&key="+key+"&memo="+memo+"&bname="+bname+"&bvalue="+bvalue;
}

但这会重定向当前位置并且只运行一次...我也尝试使用:

        xmlhttp = new XMLHttpRequest();                             
xmlhttp.open("POST","test.php?account="+account+"&key="+key+"&memo="+memo+"&bname="+bname+"&bvalue="+bvalue);
xmlhttp.send();

但这似乎行不通。我还找到了使用 ajax 的提示,但我从未使用过它,也不知道如何将我的变量传递给 test.php。

感谢您的帮助!

最佳答案

你可以使用ajax,

$.post("test.php",
{
account: account,
key: key,
memo:memo,
bname:bname,
bvalue:bvalue
},
function(data, status){
alert("Data: " + data + "\nStatus: " + status);
});

关于javascript - 如何在 html 中使用 javascript 运行 php 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49666846/

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