Ajax学习

Ajax 操作步骤

1、触发一个客户端事件。
2、创建一个 XMLHttpRequest 对象。
var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
3、打开请求
AjaxRequest.open("GET",url,true);
4、发送请求

如果不需要通过 send() 传递数据,则只要传递 null 作为该方法的参数即可。

AjaxRequest.send(null);
5、XMLHttpRequest设置回调函数。

readyState存有 XMLHttpRequest 的状态。从 0 到 4 发生变化。
0: 请求未初始化
1: 服务器连接已建立
2: 请求已接收
3: 请求处理中
4: 请求已完成,且响应已就绪

AjaxRequest.onreadystatechange = callback;
            function callBack() {
                if (AjaxRequest.readyState == 4) {
                    if (AjaxRequest.status == 200) {
                        var resp = AjaxRequest.responseText;
                    } else if (AjaxRequest.status == 404) {
                        alert("Page not found");
                    }
                } else {
                    alert("Error: status code is " + AjaxRequest.status);
                }
            }

Ajax GET

            var AjaxRequest;

            function AjaxFunction() {
                try {
                    AjaxRequest = new XMLHttpRequest();
                } catch (e) {
                    try {
                        AjaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
                    } catch (e) {
                        try {
                            AjaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
                        } catch (e) {
                            //TODO handle the exception
                            alert("Your browser broke!");
                            return false;
                        }
                    }
                }
            }

            function validateUserId() {
                AjaxFunction();
                var url = "";
                AjaxRequest.open("GET", url, true);
                AjaxRequest.send(null);
                AjaxRequest.onreadystatechange = callBack();
            }

            function callBack() {
                if (AjaxRequest.readyState == 4) {
                    if (AjaxRequest.status == 200) {
                        var resp = AjaxRequest.responseText;
                    } else if (AjaxRequest.status == 404) {
                        alert("Page not found");
                    }
                } else {
                    alert("Error: status code is " + AjaxRequest.status);
                }
            }

POST

     AjaxRequest.open("POST", url, true);
     AjaxRequest.send(data);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值