最通用的定义为:XmlHttp是一套可以在Javascript、VbScript、Jscript等脚本语言中通过http协议传送或从接收XML及其他数据的一套API。XmlHttp最大的用处是可以更新网页的部分内容而不需要刷新整个页面。
来自MSDN的解释:XmlHttp提供客户端同http服务器通讯的协议。客户端可以通过XmlHttp对象(MSXML2.XMLHTTP.3.0)向http服务器发送请求并使用微软XML文档对象模型Microsoft® XML Document Object Model (DOM)处理回应。 现在的绝对多数浏览器都增加了对XmlHttp的支持,IE中使用ActiveXObject方式创建XmlHttp对象,其他浏览器如:Firefox、Opera等通过window.XMLHttpRequest来创建xmlhttp对象。
XmlHttp对象的属性:
XmlHttp对象的方法:
如何发送一个简单的请求?
最简单的请求是,不以查询参数或提交表单的方式向服务器发送任何信息.使用XmlHttpRequest对象发送请求的基本步骤:
● 为得到XmlHttpRequest对象实例的一个引用,可以创建一个新的XmlHttpRequest的实例。
● 告诉XmlHttpRequest对象,那个函数回处理XmlHttpRequest对象的状态的改变.为此要把对象的
onreadystatechange属性设置为指向JavaScript的指针.
● 指定请求属性.XmlHttpRequest对象的Open()方法会指定将发送的请求.
● 将请求发送给服务器.XmlHttpRequest对象的send()方法将请求发送到目标资源.
XmlHttpRequest实例分析
我想大家都知道,要想使用一不对象首先我门得做什么?是不是必须先创建一个对象吧.比如C#和Java里用new来实例对象.那么我门现在要使用XmlHttp对象是不是也应该先创建一个XmlHttp对象呢?这是毫无疑问的!那么下面我们来看看在客户端怎么创建一个XmlHttp对象,并使用这个对象向服务端发送Http请求,然后处理服务器返回的响应信息.
1.创建一个XmlHttp对象(在这里我以一个无刷新做加法运算的实例 )
2function createXMLHttpRequest()
3{
4 if(window.ActiveXObject)
5 {
6 xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
7 }
8 else if(window.XMLHttpRequest)
9 {
10 xmlHttp = new XMLHttpRequest();
11 }
12}
2.定义发送请求的方法
2function AddNumber()
3{
4 createXMLHttpRequest();
5 var url= "AddHandler.ashx?num1="+document.getElementById("num1").value+"&num2="+document.getElementById("num2").value;
6 xmlHttp.open("GET",url,true);
7 xmlHttp.onreadystatechange=ShowResult;
8 xmlHttp.send(null);
9}
3.定义回调函数,用于处理服务端返回的信息
2function ShowResult()
3{
4 if(xmlHttp.readyState==4)
5 {
6 if(xmlHttp.status==200)
7 {
8 document.getElementById("sum").value=xmlHttp.responseText;
9 }
10 }
11}
using System;
using System.Web;
using System.Data;
using System.Data.SqlClient;
public class Handler : IHttpHandler
{
public void ProcessRequest (HttpContext context)
{
context.Response.ContentType = "text/plain";
int a = Convert.ToInt32(context.Request.QueryString["num1"]);
int b = Convert.ToInt32(context.Request.QueryString["num2"]);
int result = a + b;
context.Response.Write(result);
}
public bool IsReusable
{
get
{
return false;
}
}
}
现在我门就可以调用AddNumber()这个方法向服务端发送请求来做一个无刷新的加法运算了.
<br />无刷新求和示例<br />
<br />
<input id="num1" style="width: 107px" type="text" onkeyup="AddNumber();" value="0" />
+<input id="num2" style="width: 95px" type="text" onkeyup="AddNumber();" value="0" />
=<input id="sum" style="width: 97px" type="text" /></div>
这个实例虽然很简单.我之所以用这个实例主要是给大家介绍XmlHttp对象的处理过程.文章后面我把项目文件提供下载.
------------------------------------------------------------------------------------------------------------
上面把JS写到页面中了,在实际的项目开发中是不推荐这样做的,最好把JS代码都定义到一个JS文件类.我这里有一份XmlHttpRequest对象的JS(网上下载的),把相关的方法基本都写全了.下面我门来看看怎么使用这个外部JS文件来发送异步请求及响应.
我门先来看看这个JS文件的详细定义:
2{
3 this.XmlHttp = this.GetHttpObject();
4}
5
6CallBackObject.prototype.GetHttpObject = function()
7{
8 var xmlhttp;
9 if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
10 try {
11 xmlhttp = new XMLHttpRequest();
12 } catch (e) {
13 xmlhttp = false;
14 }
15 }
16 return xmlhttp;
17}
18
19CallBackObject.prototype.DoCallBack = function(URL)
20{
21 if( this.XmlHttp )
22 {
23 if( this.XmlHttp.readyState == 4 || this.XmlHttp.readyState == 0 )
24 {
25 var oThis = this;
26 this.XmlHttp.open('POST', URL);
27 this.XmlHttp.onreadystatechange = function(){ oThis.ReadyStateChange(); };
28 this.XmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
29 this.XmlHttp.send(null);
30 }
31 }
32}
33
34CallBackObject.prototype.AbortCallBack = function()
35{
36 if( this.XmlHttp )
37 this.XmlHttp.abort();
38}
39
40CallBackObject.prototype.OnLoading = function()
41{
42 // Loading
43}
44
45CallBackObject.prototype.OnLoaded = function()
46{
47 // Loaded
48}
49
50CallBackObject.prototype.OnInteractive = function()
51{
52 // Interactive
53}
54
55CallBackObject.prototype.OnComplete = function(responseText, responseXml)
56{
57 // Complete
58}
59
60CallBackObject.prototype.OnAbort = function()
61{
62 // Abort
63}
64
65CallBackObject.prototype.OnError = function(status, statusText)
66{
67 // Error
68}
69
70CallBackObject.prototype.ReadyStateChange = function()
71{
72 if( this.XmlHttp.readyState == 1 )
73 {
74 this.OnLoading();
75 }
76 else if( this.XmlHttp.readyState == 2 )
77 {
78 this.OnLoaded();
79 }
80 else if( this.XmlHttp.readyState == 3 )
81 {
82 this.OnInteractive();
83 }
84 else if( this.XmlHttp.readyState == 4 )
85 {
86 if( this.XmlHttp.status == 0 )
87 this.OnAbort();
88 else if( this.XmlHttp.status == 200 && this.XmlHttp.statusText == "OK" )
89 this.OnComplete(this.XmlHttp.responseText, this.XmlHttp.responseXML);
90 else
91 this.OnError(this.XmlHttp.status, this.XmlHttp.statusText, this.XmlHttp.responseText);
92 }
93}
94
一个简单的Hello实例:
<head runat="server">
<title>HelloWorld实例</title>
<script language="jscript" src="CallBackObject.js"></script>
<script language=jscript>
function createRequest()
{
var name = escape(document.getElementById("name").value);
var cbo = new CallBackObject();
cbo.OnComplete = Cbo_Complete;
cbo.onError = Cbo_Error;
cbo.DoCallBack("HelloWorldServer.aspx?name=" + name);
}
function Cbo_Complete(responseText, responseXML)
{
alert(responseText);
}
function Cbo_Error(status, statusText, responseText)
{
alert(responseText);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<DIV style="DISPLAY: inline; FONT-WEIGHT: bold; FONT-SIZE: 30px; FONT-FAMILY: Arial, Verdana"
ms_positioning="FlowLayout">Hello, Ajax!</DIV>
<HR width="100%" SIZE="1">
<input type="text" id="name">
<br>
<input type="button" value="发送请求" onclick="javascript:createRequest()">
</form>
</body>
</html>
From: http://www.cnblogs.com/beniao/archive/2008/03/29/1128914.html