本文共 935 字,大约阅读时间需要 3 分钟。
javascript 实现ajax (ff,chrome)
- var xmlHttpRequest = null;
- if(window.XMLHttpRequest){ //Mozilla, Safari, IE7
- xmlHttpRequest = new window.XMLHttpRequest();
-
- if(!window.ActiveXObject){ // Mozilla, Safari,
- /**
- readystate 5种状态
- 0 (未初始化) 对象已建立,但是尚未初始化(尚未调用open方法)
- 1 (初始化) 对象已建立,尚未调用send方法
- 2 (发送数据) send方法已调用,但是当前的状态及http头未知
- 3 (数据传送中) 已接收部分数据,因为响应及http头不全,这时通过responseBody和responseText获取部分数据会出现错误,
- 4 (完成) 数据接收完毕,此时可以通过通过responseXml和responseText获取完整的回应数据。
- **/
- //建立对象
- xmlHttpRequest.open('GET','http://localhost:8080/ajax/AjaxServlet',true);
- //发送
- xmlHttpRequest.send(null);
- //定义回调函数
- xmlHttpRequest.onreadystatechange = callback;
-
- }else{
- //IE7
- xmlHttpRequest = new ActiveXObject("Microsoft.XMLHTTP");
-
- }
- }else {
- //IE6
- }
- function callback(){
- console.log('readyState:'+xmlHttpRequest.readyState);
- if(xmlHttpRequest.readyState == 4){
- if(xmlHttpRequest.status == 200){
- alert(xmlHttpRequest.responseText);
- }
-
- }
- };
转载于:https://blog.51cto.com/huxiaoqi/845821