PHP编码
回到当前页面
//1.创建对象
var xhr = null;
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest();//标准浏览器
}else{//IE浏览器
xhr = new ActiveXObject("Microsoft.XMLHTTP")
}
//2.准备发送 配置发送的一些行为
xhr.open("get","demo.php"true)
//3.执行发送的动作
xhr.send(null);
//4.指定一下回调函数
xhr.onreadystatechange = function(){
}
浏览器出发调用函数