标签:function 监听 接收 xmlhttp ext pre document 整理 post请求
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);
标签:function 监听 接收 xmlhttp ext pre document 整理 post请求
原文地址:http://www.cnblogs.com/wordblog/p/7215549.html