本科做课设的时候也用过ajax,但是当时做出来的东西在大部分浏览器中都没法异步更新页面内容,当时也就得过且过了。
前段时间做demo(万恶的demo让我复习了多少东西……)又把ajax拿过来复习了一遍,终于可以适应主流的ie、firefox、chrome三大浏览器的较新版本(最近1年的版本吧,再早的版本没有试过,但想必也没什么问题)了。
小结如下:
s1: 获取一个XMLHttpRequest对象
s2: 编写一个处理函数,绑定到XMLHttpRequest对象的onreadystatechange事件上,该处理函数用于在ajax请求的状态发生变化时进行相应的处理
s3: 在XMLHttpRequest对象上open一个request,形如:xmlHttp.open("GET", "status.jsp?id="+Math.random());
s4: setRequestHeader("header", "value");可以设置各种header,如果服务器端不需要header信息,也可已省略这一步
s5: send() request
最为关键的就是s2和s3.
var xmlHttp; function createXmlHttpRequest() { if (window.XMLHttpRequest) { xmlHttp=new XMLHttpRequest(); } else if (window.ActiveXObject) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } }
处理函数基本就是这样:
function processXXX() { if (xmlHttp.readyState==4) { if (xmlHttp.status==200) { //…… } } }
function processStatistics() { var responseContext; if (xmlHttp.readyState==4) { if (xmlHttp.status==200) { responseContext=xmlHttp.responseText; document.getElementById("statistics").innerHTML=responseContext; } } }
这一步是ajax的关键,通过调用xmlHttp的open和send方法来完成,例如:
xmlHttp.open("GET", "status.jsp?id="+Math.random(), true); xmlHttp.send(null);
send方法的参数在GET方式下为null即可,在POST方式下send的参数就是要发送的key-value数据,多条数据之间用&分隔,如果post要以表单的形式发送数据,还需要设置header:
setRequestHeader("Content-type", "application/x-www-form-urlencoded");