Ajax无法处理垃圾

Ajax无法处理垃圾

这是我的客户端代码。服务器端的php代码只是echo语句。

function load(){if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
    xmlhttp=new ActiveXObject("Microsoft.xmlhttp");}
    if(xmlhttp==null)
    { alert ("Your browser does not support XMLHttpRequest!");
        return; }
    xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
            document.write("Received");
            document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
        }
    };
    xmlhttp.open("GET", "http://localhost/tphp.php?", true);/*this works separately*/
    xmlhttp.send();document.write("Sent")}


我的html代码包含

<h4 id="txtHint">to be replaced</h4>
<input type="button" onclick="load()" value="click" />


我的PHP代码包含echo语句。我只想测试它

<?php
echo "It's working";
?>

最佳答案

我不确定是否可以使用jQuery,如果可以,请简化以下步骤:

$("body").append("Sent<br/>");
$.get("/tphp.php", function (data) {
  $("body").append("Received: " + data + "<br/>");
});


使用jQuery的优点:


代码很简单。
出色的跨浏览器支持。

关于ajax - Ajax无法处理垃圾,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33952232/

10-11 12:19