明日科技书上的JS代码,求解释。

varnet=newObject();net.AjaxRequest=function(url,onload,onerror,method,params){this.re... var net=new Object();
net.AjaxRequest=function(url,onload,onerror,method,params){
this.req=null;
this.onload=onload;
this.onerror=(onerror) ? onerror : this.defaultError;
this.loadDate(url,method,params);
}

net.AjaxRequest.prototype.loadDate=function(url,method,params){
if (!method){
method="GET";
}
if (window.XMLHttpRequest){
this.req=new XMLHttpRequest();
} else if (window.ActiveXObject){
this.req=new ActiveXObject("Microsoft.XMLHTTP");
}
if (this.req){
try{
var loader=this;//******************************************************************不懂1
this.req.onreadystatechange=function(){
net.AjaxRequest.onReadyState.call(loader);
}

this.req.open(method,url,true);
if(method=="POST"){
this.req.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
}
this.req.send(params);//******************************************************************不懂2
}catch (err){
this.onerror.call(this);
}
}
}

net.AjaxRequest.onReadyState=function(){
var req=this.req;
var ready=req.readyState;
if (ready==4){
if (req.status==200 ){
this.onload.call(this);//****************************************不懂3
}else{
this.onerror.call(this);//***************************************不懂4
}
}
}

net.AjaxRequest.prototype.defaultError=function(){
alert("error fetching data!"
+"\n\nreadyState:"+this.req.readyState
+"\nstatus: "+this.req.status
+"\nheaders: "+this.req.getAllResponseHeaders());
}
展开
 我来答
彼德范
2013-12-20 · TA获得超过179个赞
知道小有建树答主
回答量:153
采纳率:40%
帮助的人:96.1万
展开全部
第一个表示把AjaxRequest对象赋给loader变量,
第二个表示发送ajax请求,params作为发送的数据,
第三个表示使用AjaxRequest对象调用onload方法,第四个表示使用AjaxRequest对象调用onerror方法。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式