我见过多种写法
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.打开请求。2发送请求。3请求完毕。