// 1、 if (window.XMLHttpRequest) { var xhr = new XMLHttpRequest(); console.log(xhr); console.log(xhr.constructor); } else { // IE6- var xhr = new ActiveXObject(); } // 2、 // open("请求的方式","请求的地址",是否异步) ---后端人员给提供的 // true 异步 false 同步 默认是异步 xhr.open("GET", "ajax_info.txt", true); // 3、 xhr.send(); // 4、 xhr.onreadystatechange = function () { console.log(xhr); console.log(xhr.readyState);//4 console.log(xhr.status);//200 // 5、 if (xhr.readyState == 4 && xhr.status == 200) { // 6、 console.log(xhr.response); // 7、 document.getElementById("box").innerText = xhr.response; } }