xmlHttp.onreadystatechange 的顺序问题

我见过多种写法

    xmlHttp.open("post", "test.php",true); 
    xmlHttp.send(formData); 
    xmlHttp.onreadystatechange =  function(){  }
最常见的一种

xmlHttp.onreadystatechange放在最前面的一种


    xmlHttp.onreadystatechange =  function(){  }
    xmlHttp.open("post", "test.php",true); 
    xmlHttp.send(formData); 

还有一种这样的

xmlhttp.open("POST", "Demo", true);
xmlhttp.onreadystatechange=myCallBack;
xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=UTF-8");
xmlhttp.send("FirstName=Nat&LastName=Dunn");

请问,

xmlHttp.open 
xmlHttp.send 
xmlHttp.onreadystatechange =

这三者最符合逻辑的顺序是什么?   
阅读 1.6k
1 个回答

1.打开请求。2发送请求。3请求完毕。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题