我有这个使用 ajax 的 php
cotizaciones.php
<script>
function showUser(str)
{
if (str == "")
{
document.getElementById("txtHint").innerHTML = "";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function()
{
if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
{
document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET", "getuser.php?q=" + str, true);
xmlhttp.send();
}
</script>
我有另一个如上所述的脚本,除了它被称为 calcularCuotas(cuotas) 并且最后几行是:
xmlhttp.open("GET", "getuser.php?c=" + str, true);
xmlhttp.send();
身体标签包含:
<select name="users" onchange="showUser(this.value)">
<select name="cuotas" onchange="calcularCuota(this.value)">
文件getuser.php
<?php
$q = $_GET["q"];
$c = $_GET["c"];
?>
当我尝试使用它时,php 会抛出这个错误:
注意:未定义的索引:第 3 行 C:\wamp\www\Cotizacion\getuser.php 中的 c
感谢帮助 :)