1、new 一个引擎
代码:var xhr=new XMLHttpRequest();
John.Yu(7054918) 16:08:16
2、设定工作参数:
代码:xhr.open("GET","url?uname=john");
3、设置回调函数:
John.Yu(7054918) 16:09:51
xhr.onreadystatechange=function(){
alert(xhr.responseText);
}
4、发送请求:
send(null);
==============================
代码:var xhr=new XMLHttpRequest();
John.Yu(7054918) 16:08:16
2、设定工作参数:
代码:xhr.open("GET","url?uname=john");
3、设置回调函数:
John.Yu(7054918) 16:09:51
xhr.onreadystatechange=function(){
alert(xhr.responseText);
}
4、发送请求:
send(null);
==============================
未完待续。。。
原文链接:https://www.f2er.com/ajax/165800.html