0

我正在尝试修改此示例以制作实时更新列表以将其与我的 API 集成。因此,我不想在带有表单的页面上使用 GET,而是想通过函数调用将其发送到该页面。

好的,所以问题是它没有返回任何东西。我不确定 gethint.php 是否真的收到了一个值。如果您在我提供的链接上查看 gethint.php,它会设置

$q = $_GET['q']. 

当我回显时没有显示任何内容,所以我认为它没有发送值,尽管警报消息显示了框中的内容(在 message.php 上)

所以,这是我的表格

// message.php

//function to display the hint sent from gethint.php
function message_hint($hint){
    echo $hint;
}

//displays the form for sending messages
function send_message_form($to_user,$title,$message){
    include 'gethint.php';
    ?>
    <table>
    <form name = "send_message" method="post">
    <td>Send A Message</td>
    <tr><td>To:</td><td><input type = "text" size="50" name="to_user" id = "to_user" value ="<? echo $to_user; ?>" onkeyup="showHint(this.value)"></td></tr>
    <tr><td>Title:</td><td><input type = "text" size="50" name="message_title"></td></tr>
    <tr><td>Message:</td><td><textarea rows="4" cols="50" name="message_details"></textarea></td></tr>
    <tr><td><input type="submit" name="submit_message"></td></tr>
    </table>
    </form>
    <?
}

这是message.php的头

<head>
<script>
function showHint(str){
var to_user = document.getElementById("to_user").value //to_user is the id of the textbox
if (str.length==0){  
    to_user.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){
            alert(to_user) //properly displays the name via alert box
        to_user.innerHTML=xmlhttp.responseText;
    }
}
xmlhttp.open("GET","gethint.php?q="+to_user,true);
xmlhttp.send();
}
</script>
</head>

除了底部的这个之外,页面 gethint.php 完全相同。

//echo $response //this was the original output
$message = new messages;
$message->message_hint($response);
4

1 回答 1

1

首先,我推荐使用 jQuery 进行 AJAX 调用。请参阅这些示例

接下来,我建议使用 jQueryUI 来实现自动完成功能。请参阅此页面上的示例

您的代码将减少 > 50%,您可能会发现它更容易理解。

于 2012-11-21T23:14:03.320 回答