Ajax多线程
尝试MagicAjax,发现非常方便,但是不支持多线程异步通讯。
为此我又根据需要自己写了一个小Ajax,作为MagicAjax的补充。ie和ff上运行良好。
这其实是从去年的Flexible里面改的。
请求包括命令cmd和参数par
这个Ajax对象封装了一个成员xmlhttp
两个方法:
请求req和响应rsp
//
满足此处需要就行了,以后再根据不同的需要扩展。
为此我又根据需要自己写了一个小Ajax,作为MagicAjax的补充。ie和ff上运行良好。
这其实是从去年的Flexible里面改的。
1//
2if(window.ActiveXObject)STD=false;
3else STD=true;
4//
5function Ajax(fun){
6 this.a=(STD)?(new XMLHttpRequest):(new ActiveXObject('Microsoft.XMLHTTP'));
7 var ajax=this;
8 var xmlhttp=this.a;
9
10 xmlhttp.onreadystatechange=function(){
11 if(xmlhttp.readyState==4)
12 fun(ajax.rsp());
13 }
14
15 this.req=function(cmd,par){
16 xmlhttp.open("POST","MyAjax.asmx/"+cmd,true);
17 xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
18 xmlhttp.send("par="+par);
19 }
20 this.rsp=function(){
21 return (STD)?xmlhttp.responseXML.firstChild.textContent:xmlhttp.responseXML.text;
22 }
23}
24
其中fun是回调函数,用来处理返回消息。2if(window.ActiveXObject)STD=false;
3else STD=true;
4//
5function Ajax(fun){
6 this.a=(STD)?(new XMLHttpRequest):(new ActiveXObject('Microsoft.XMLHTTP'));
7 var ajax=this;
8 var xmlhttp=this.a;
9
10 xmlhttp.onreadystatechange=function(){
11 if(xmlhttp.readyState==4)
12 fun(ajax.rsp());
13 }
14
15 this.req=function(cmd,par){
16 xmlhttp.open("POST","MyAjax.asmx/"+cmd,true);
17 xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
18 xmlhttp.send("par="+par);
19 }
20 this.rsp=function(){
21 return (STD)?xmlhttp.responseXML.firstChild.textContent:xmlhttp.responseXML.text;
22 }
23}
24
请求包括命令cmd和参数par
这个Ajax对象封装了一个成员xmlhttp
两个方法:
请求req和响应rsp
//
满足此处需要就行了,以后再根据不同的需要扩展。
posted on 2006-04-13 19:46 civ3's .NET studying 阅读(1468) 评论(0) 编辑 收藏 举报