ajax技术整理总结
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax技术整理总结相关的知识,希望对你有一定的参考价值。
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);
以上是关于ajax技术整理总结的主要内容,如果未能解决你的问题,请参考以下文章