标签:
ajax仅仅是把异步对象封装好了
==》 0.0创建异步对象 var xhr=new XMLHttpRequest();
1.0设置参数(打开链接) xhr.open("请求方式",Url,是否异步)
2.0回调函数 xhr.onreadystatechange=function(){
if(xhr.readyState==4 && xhr.status){}
}
3.0不使用缓存 xhr.open("get","/p01data.ashx?id="+Math.random(),true) ==>一般不推荐使用
xhr.setRequestHeader("if-modifid-Since","0"); ==>if-modifid-Since相关解释在http://tech110.blog.51cto.com/438717/549764
4.0发送请求 xhr.send();
readystate:当前状态
0:创建异步对象
1:打开链接
2:发送请求
3:开始响应
4:结束响应
标签:
原文地址:http://www.cnblogs.com/hechunfang/p/4231361.html