ajax的4个步骤
// 创建xmlhttpRequest对象
var xh=null;
if(window.ActiveXObject){
xh=new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest){
xh= new XMLHttpRequest();
}
//第二步 设置回调函数,状态变化后所执行的函数
xh.onreadystatechange = function() {
if (xh.readyState == 4) {
if (xh.status == 200) {
console.log(xh.pesponseText);
}
}
}
//第三步 设置method和地址action
xh.open(‘get‘,/querystu);
//第四步 发送
xh.send();
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。