gpt4 book ai didi

php - 从 Javascript 向 PHP 传递多个参数

转载 作者:行者123 更新时间:2023-12-04 23:28:59 25 4
gpt4 key购买 nike

我正在尝试使用这个

function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
{
// code for IE7+, Firefox, Chrome, Opera, Safari
return new XMLHttpRequest();
}
if (window.ActiveXObject)
{
// code for IE6, IE5
return new ActiveXObject("Microsoft.XMLHTTP");
}
return null;
}

function CallSomePHP()
{
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
{
alert ("Browser does not support HTTP Request");
return;
}
var url="myPhp.php"; ***(Need to Pass multiple parameter to php from here)***
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}

function stateChanged()
{
if (xmlhttp.readyState==4)
{
alert(xmlhttp.responseText);

最佳答案

您将它们添加到 URL 字符串中,因此:

var url="myPhp.php?a=1&b=2&c=3";

然后您可以在 PHP 中从 $_GET 数组访问它们:

$Param1 = $_GET['a']; // = 1
$Param2 = $_GET['b']; // = 2
$Param3 = $_GET['c']; // = 3

关于php - 从 Javascript 向 PHP 传递多个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1600360/

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