如何实现一个AJAX请求

##PHP部分


    echo"我的第一个AJAX请求";
?>

##JavaScript部分

<script>
        function testAjax(){
            var xhr= new XMLHttpRequest();
            xhr.open("get","text.php",true);
            xhr.onreadystatechange=function(){
                if(xhr.readyState==4 && xhr.status==200){
                    var resText = xhr.responseText;
                    document.getElementById("add").innerHTML=resText;
                }
            }
            xhr.send(null);
        }
    </script>

##html部分

<body>
    
    <div id="add">div>
    <button onclick="testAjax()">点击查看请求button>
body>

你可能感兴趣的:(如何实现一个AJAX请求)