1.创建ajax对象
var xhr=new XMLHttpRequest();
4.监听状态信息
xhr.onreadystatechange=function(){ //4接收完毕 if(xhr.readyState==4){ document.getElementById(‘div‘).innerHTML=xhr.responseText; } }
2.设置请求方式及URL地址
xhr.open(‘get‘,‘/1.php‘);
3.发送请求
//get null post请求的数据 xhr.send(null);
时间: 2024-10-01 22:07:43