0

我正在使用 AJAX 脚本从表单发布数据并从 php 文件返回处理后的数据。脚本如下。

    function loadXmlDoc(hashtag){
    var xmlhttp;
    if (window.XMLHttpRequest){
        xmlhttp = new XMLHttpRequest();
    }
    else{
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange = function(){
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
            document.getElementById("ajaxify").innerHTML = xmlhttp.responseText;
        }
    }
    xmlhttp.open("POST", "demo_ajax3.php", true);
    xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xmlhttp.send("hashtag=" + hashtag);
    }

但是我想自动更新结果。我如何让它自动更新,以便检查更多数据?或者最好的方法是什么?

从我所看到的情况来看,让 AJAX 表单自动刷新似乎没什么,所以任何帮助都会受到极大的赞赏

4

1 回答 1

0

试试这个方法。它应该每 10 秒自动更新一次结果。

var xmlhttp;
if (window.XMLHttpRequest){
    xmlhttp = new XMLHttpRequest();
}
else{
    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function(){
  if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
    document.getElementById("ajaxify").innerHTML = xmlhttp.responseText;
  }
}
function loadXmlDoc(hashtag){
  var repeat = function () {
    xmlhttp.open("POST", "demo_ajax3.php", true);
    xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xmlhttp.send("hashtag=" + hashtag);
  };
  repeat.hashtag = hashtag;
  setInterval(function() { repeat(); },10000);
}
于 2012-10-27T01:41:35.793 回答