最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
ajax创建代码
时间:2022-07-02 10:19:23 编辑:袖梨 来源:一聚教程网
ajax创建代码
var http_request=false;
function send_request(url){//初始化,指定处理函数,发送请求的函数
http_request=false;
//开始初始化XMLHttpRequest对象
if(window.XMLHttpRequest){//Mozilla浏览器
http_request=new XMLHttpRequest();
if(http_request.overrideMimeType){//设置MIME类别
http_request.overrideMimeType("text/xml");
}
}
else if(window.ActiveXObject){//IE浏览器
try{
http_request=new ActiveXObject("Msxml2.XMLHttp");
}catch(e){
try{
http_request=new ActiveXobject("Microsoft.XMLHttp");
}catch(e){}
}
}
if(!http_request){//异常,创建对象实例失败
window.alert("创建XMLHttp对象失败!");ajax创建代码
return false;
}
http_request.onreadystatechange=processrequest;
//确定发送请求方式,URL,及是否同步执行下段代码
http_request.open("GET",url,true);
http_request.send(null);
}
//处理返回信息的函数
function processrequest(){
if(http_request.readyState==4){//判断对象状态
if(http_request.status==200){//信息已成功返回,开始处理信息
document.getElementById(reobj).innerHTML=http_request.responseText;
}
else{//页面不正常
alert("您所请求的页面不正常!");ajax创建代码
}
}
}
function dopage(obj,url){
document.getElementById(obj).innerHTML="正在读取数据...";
send_request(url);
reobj=obj;
}
相关文章
- 电信送的Tplink路由器的型号和性能介绍(电信送的Tplink路由器的优缺点及是否值得购买) 09-07
- 苍穹之巅游戏最强阵容推荐—T0三套阵容搭配 09-07
- 畅感浮空岛礼包码2026最新更新—礼包码全部未过期 09-07
- 口袋奇兵兑换码5000钻石永不过期—礼包码长期无过期合集 09-07
- 原始征途开服时间表 最新区服开放时间2026 09-07
- 织梦森林破解版最新版本 无限钻石免内购下载 09-07