Ajax不是某种编程语言
是一种在无需重新加载整个网页的情况下,能够局部更新网页的技术
客户端向服务器端请求数据的一种技术
**
原生ajax
var url="http://192.168.4.18:8000/";
var xhr=new XMLHttpRequest();
xhr.open("get",url,true)
xhr.send()
xhr.onreadystatechange=function(){
if(xhr.readyState==4 && xhr.status==200){
var res=JSON.parse(xhr.responseText);
console.log(res)
}
}