如何使网页仅显示最近的更新,而不是使用AJAX重新加载

时间:2013-04-29 12:30:25

标签: php javascript html xml

我在我的网页上制作了一个表格,每十秒重新加载一次,以获取用户输入的新信息(如果有的话)。问题是,我不希望整个表每十秒重新加载一次,我只希望表只显示表中没有的新更新。下面是我用来重新加载页面的代码。

function process(xmlHttp, i) {
  if (xmlHttp.readyState == 4 || xmlHttp.readyState == 0) {
    //value = encodeURIComponent( objRef.value );
    xmlHttp.open("GET", "php/AjaxBody.php?value=" + i, true);
    xmlHttp.onreadystatechange = handleServerResponse;
    xmlHttp.send(null);
  } else {
    alert("Hold on");
  }
}

function handleServerResponse() {
  if (test.readyState == 1 || test.readyState == 2 || test.readyState == 3) {}
  if (test.readyState == 4) {
    if (test.status == 200) {
      txtResponse = test.responseText;
      bodyDiv = document.getElementById("body");
      bodyDiv.innerHTML = txtResponse;
    } else {
      alert("Error with the xmlHttp status");
    }
  }
  /*
    else{
        alert("Error with the xmlHttp readystate: " + x.status);
    } */
}

txtResponse会返回重新加载到div = body的整个表格,我想知道如何解决这个问题,我也希望它是原生的JavaScript(“我不介意XML,改变返回信息的方式”)

2 个答案:

答案 0 :(得分:0)

我认为您可以在网址中添加限制。这样的事应该可以正常工作。

function process(xmlHttp, i, max_id) {
  if (xmlHttp.readyState == 4 || xmlHttp.readyState == 0) {
    //value = encodeURIComponent( objRef.value );
    xmlHttp.open("GET", "php/AjaxBody.php?value=" + i + "&max_id=" + max_id, true);
    xmlHttp.onreadystatechange = handleServerResponse;
    xmlHttp.send(null);
  } else {
    alert("Hold on");
  }
}

答案 1 :(得分:0)

您还可以为对象添加日期时间,例如创建日期和上次修改日期。然后做一些检查,看看是否有新的东西。

看看javascript框架KnockoutJS,如果你想要一些非常复杂的转换,它会为你做很多事情,但它有一个相对较高的学习曲线。