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(){
}

 浏览器出发调用函数

 

posted @ 2018-04-23 18:08  码路上的奋斗  阅读(79)  评论(0编辑  收藏  举报