Document
dskuaghfusk
var t=document.getElementById("t");
var http=new XMLHttpRequest();
http.open("GET","txt.txt",true);//true:异步 false:同步
http.send();
http.onreadystatechange=function(){//存储函数 每当readyState属性改变时就会调用
if(http.readyState==4 && http.status==200){
//readyState属性:0为未初始化 1服务器连接已建立 2为请求已接受 3请求处理中 4请求已完成且响应已就绪
//status 属性:200为OK 404为页面未找到
t.innerHTML=http.responseText;//局部刷新
//responseText属性:返回服务器返回的信息(请求的页面)
}
}
}
本文来源于网络:查看 >https://www.cnblogs.com/mrluobiao/p/6742788.html