0

ライブ更新リストを作成してこの例を変更し、APIと統合しようとしています。そのため、フォームのあるページでGETを使用する代わりに、関数呼び出しを介してそのページに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

まず、AJAX 呼び出しには jQuery を使用することをお勧めします。これらの例を参照してください。

次に、オートコンプリート機能に jQueryUI を使用することをお勧めします。このページの例を参照してください。

コードは 50% 以上削減され、理解しやすくなります。

于 2012-11-21T23:14:03.320 に答える