【Ajax】XMLHttpRequest().readyState的五个状态(0,1,2,3,4)
2021-01-24 01:27
标签:事件监听 === 监听服务 接受 客户端 响应 color http 调用 ================================================================================ 【Ajax】XMLHttpRequest().readyState的五个状态(0,1,2,3,4) 标签:事件监听 === 监听服务 接受 客户端 响应 color http 调用 原文地址:https://www.cnblogs.com/raphaelJava-4560/p/13263589.html//第1步:创建异步请求对象xhr
var xhr = new XMLHttpRequest();//第2步:注册事件监听,xhr通过监听服务器返回结果时的状态值,判断此次返回的结果是否可用
xhr.onreadystatechange=function(){
if(xhr.readyState==4&xhr.status==200){
console.log(xhr.responseTest)
}
}
//这个步骤就像一个阴魂一样,在每一步骤执行完后,都会执行。只是每次的xhr.readyState的数值不同//第3步.xhr通过调用open方法去建立与服务器的连接
xhr.open()
//第4步.xhr向服务器发送请求(请求方式为get方式时,send方法内部传null)
xhr.send(null);
文章标题:【Ajax】XMLHttpRequest().readyState的五个状态(0,1,2,3,4)
文章链接:http://soscw.com/index.php/essay/46118.html