-2

我想在单击按钮时触发 AJAX 请求,但我无法在后端触发它。

索引.php

<html>
    <head>
        <script type="text/javascript">
            var req = new XMLHttpRequest();
            function send1()
            {
                req.open("GET", "process.php?q=hello", true);
                req.send();         
                alert(req.responseText);      
            }
        </script>
    </head>    

    <button onclick=send1()>send</button>

</html>

进程.php

<?php
$new= $_GET['q'];
echo $new;
?>

这应该在警报框中给我“你好”,为什么不是?

4

1 回答 1

7

AJAX 中的第一个 A 表示“异步”。你需要做的是监听 readyState 的变化:

req.open(...);
req.onreadystatechange = function() {
    if( this.readyState == 4) {
        if( this.status == 200) alert(this.responseText);
        else alert("HTTP error "+this.status+" "+this.statusText);
    }
};
req.send();
于 2012-07-28T16:46:56.753 回答