3

我是 ajax 新手,我想问一个我试图解决很多但不知道如何解决的问题。我有一个 html 表单,它有 2 个文本字段区域。当用户向第一个文本字段输入值时,我想从我的数据库中更新第二个。

我浏览了许多在线教程,我自己写了这样的东西:

html:

<tr>
    <td width="20"></td>
    <td width="229" bgcolor="#FCECEC">ID</td>
    <td width="319" bgcolor="#FCECEC">NAME</td>  
    <td width="82" align="left"><label>
        <input type="button" name="ADD" id="ADD" value="New User" onclick=" "/>
    </label></td>
</tr>
<tr>  
    <td bgcolor="#FCECEC" align="center">1</td>
    <td><input type="text" name="ID" id="ID" maxlength="11" onchange="showUser(this.value)"   value=" " /></td>
    <td><input type="text" size="40" name="NAME" id="NAME" maxlength="80" value="" /></td>
</tr> 

ajax函数:

function showUser(str)
{
    if (str=="")
    {
        document.getElementById("NAME").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("NAME").innerHTML=xmlhttp.responseText;
        }
    }
    xmlhttp.open("GET","/myproject/users_update.php?q="+str,true);
    xmlhttp.send();
}

和 php 方面的一部分:

$q=$_REQUEST["q"];
$kps->WhatsId($q);
$tname=$kps->NAME;
$tsname=$kps->SURNAME;

当我这样做时,我不断得到

未定义的索引 q

我哪里做错了?这是真的吗?任何帮助,将不胜感激。谢谢!

4

1 回答 1

0

从您提供的少量信息中很难确切知道问题出在哪里。

就像布莱恩提到的那样,您应该document.getElementById("NAME").innerHTMLdocument.getElementById("NAME").value

但这不是导致问题的原因。在我看来,你在这里弄错了网址: xmlhttp.open("GET","/myproject/users_update.php?q="+str,true);

但我不能确定,因为我没有看到你的项目目录

于 2013-03-05T12:51:11.267 回答