Ajax Call有时候工作,有时工作和刷新,有时刷新和失败......?

时间:2011-12-21 12:32:20

标签: php javascript ajax

目前我收到了这段代码:

function post_positive(id) {
  if (window.XMLHttpRequest) {
    xmlhttp = new XMLHttpRequest();
  } else {
    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  }
  xmlhttp.onreadystatechange = function() {
    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
      document.getElementById("post"+id).innerHTML = xmlhttp.responseText;
    }
  }
  xmlhttp.open("GET","post_review.php?id="+id+"&type=positive",true);
  xmlhttp.send();
  return false; 
} 

对于我的ajax调用,我只是函数post_positive()。有时它会显示结果,有时会刷新页面,有时甚至没有。

1 个答案:

答案 0 :(得分:0)

你对ajax使用jQuery ajax()方法很容易理解和正常工作

function post_positive(id){
$阿贾克斯({
类型: '得到',
网址: 'post_review.php',
数据:{'id':id,'type':'positive'},
成功:函数(结果){
$( “#交” + ID)的.text(结果);

}

});
}