首页 > 代码库 > Ajax初窥

Ajax初窥

Ajax四个步骤

1. 创建Ajax对象
2. 连接到服务器
3. 发送请求
4. 接收返回值

0x01 创建AJAX对象

方法1(非IE6.0)

Var oAjax = new XMLHttpRequest();

方法2(IE6.0)

//IE6.0版本所使用的Ajax

Var oAjax = new ActiveXObject(“Micosoft.XMLHTTP”);

方法3(兼容版)

兼容的原理

//使用没有定义的变量----报错
//使用没有定义的属性----Underfine

实例代码

<script>
Alert(a);//会提示错误。
Alert(window.a);//会提示underfine
</script>
那么就可以那么写
<script>
Button.onclick = function()
{
If(window. XMLHttpRequest()){
Var oAjax = new XMLHttpRequest();
}else{
Var oAjax = new ActiveXObject(“Micosoft.XMLHTTP”);
}
}
</script>

       

Ajax初窥